Fix style for login buttons

This commit is contained in:
Nicola Benaglia 2025-04-21 20:06:57 +02:00
parent 653532e78e
commit 3bc139041d

View File

@ -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,
},
},
}));