From 1234a0fc495cfa6848d901bcb2571d8b7a2f6905 Mon Sep 17 00:00:00 2001 From: vivek kasture Date: Wed, 18 Sep 2024 01:33:41 +0530 Subject: [PATCH] Issue #PS-000 fix: Dark theme color fixed on login page --- src/pages/login.tsx | 8 +++--- src/styles/customTheme.tsx | 52 ++++++++++++++++++++++++++++++-------- 2 files changed, 46 insertions(+), 14 deletions(-) diff --git a/src/pages/login.tsx b/src/pages/login.tsx index 2bd51080..f3199ae3 100644 --- a/src/pages/login.tsx +++ b/src/pages/login.tsx @@ -376,7 +376,7 @@ const LoginPage = () => { borderRadius: '16px', boxShadow: darkMode === 'dark' - ? 'rgba(255, 255, 255, 0.8) 0px 2px 8px 0px' + ? 'rgba(0, 0, 0, 0.9) 0px 2px 8px 0px' : 'rgba(99, 99, 99, 0.2) 0px 2px 8px 0px', }, }} @@ -401,7 +401,7 @@ const LoginPage = () => { displayEmpty style={{ borderRadius: '0.5rem', - color: theme.palette.warning['A200'], + // color: theme.palette.warning['A200'], width: '117px', height: '32px', marginBottom: '0rem', @@ -504,8 +504,9 @@ const LoginPage = () => { {t('LOGIN_PAGE.FORGOT_PASSWORD')} - + setRememberMe(e.target.checked)} checked={rememberMe} inputProps={{ 'aria-label': 'Remember Me' }} @@ -541,6 +542,7 @@ const LoginPage = () => { >