From 3bc139041df99e23283adfb1eabc3039f290e778 Mon Sep 17 00:00:00 2001 From: Nicola Benaglia Date: Mon, 21 Apr 2025 20:06:57 +0200 Subject: [PATCH] Fix style for login buttons --- src/styles/App-styles.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/App-styles.ts b/src/styles/App-styles.ts index 9b385bc..980657b 100644 --- a/src/styles/App-styles.ts +++ b/src/styles/App-styles.ts @@ -130,10 +130,10 @@ export const CustomButton = styled(Box)(({ theme }) => ({ transition: 'all 0.2s', width: 'fit-content', '&:hover': { - backgroundColor: theme.palette.background.default, - color: '#fff', + backgroundColor: theme.palette.background.paper, + color: theme.palette.text.secondary, 'svg path': { - fill: '#fff', + fill: theme.palette.background.paper, }, }, }));