From faaf99c6ce2111faeeaa3100cd076a51b711d95b Mon Sep 17 00:00:00 2001 From: SpiritCroc <dev@spiritcroc.de> Date: Sun, 27 Oct 2024 19:55:30 +0100 Subject: Stronger login background to ensure contrast of our icon with our bg --- src/components/views/auth/AuthPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/auth/AuthPage.tsx b/src/components/views/auth/AuthPage.tsx index 032744413f..71bf8ae6d6 100644 --- a/src/components/views/auth/AuthPage.tsx +++ b/src/components/views/auth/AuthPage.tsx @@ -58,7 +58,7 @@ export default class AuthPage extends React.PureComponent<React.PropsWithChildre const modalContentStyle: React.CSSProperties = { display: "flex", zIndex: 1, - background: "rgba(255, 255, 255, 0.59)", + background: "linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7))", borderRadius: "8px", }; -- 2.47.0