Skip to content

Commit

Permalink
styles: change hover color and font weight
Browse files Browse the repository at this point in the history
  • Loading branch information
janrembold committed May 25, 2024
1 parent 080d02c commit 549f264
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/extensions/theme.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ const theme = createTheme({
MuiButton: {
styleOverrides: {
root: {
fontFamily: getCssVarValue('--font-family-sans-serif'),
fontSize: getCssVarValue('--font-size-primary'),
fontWeight: getCssVarValue('--font-weight-bold'),
lineHeight: '20px',
borderRadius: getCssVarValue('--button-border-radius')
},
Expand All @@ -135,12 +137,11 @@ const theme = createTheme({
'textTransform': 'none',
'outline': 'none',
'color': getCssVarValue('--white'),
'fontWeight': getCssVarValue('--font-weight-regular'),
'fontFamily': getCssVarValue('--font-family-sans-serif'),
'boxShadow': 'none',
'&:hover': {
boxShadow: 'none',
color: getCssVarValue('--white')
color: getCssVarValue('--white'),
backgroundColor: getCssVarValue('--hover-primary')
}
},
outlined: {
Expand Down

0 comments on commit 549f264

Please sign in to comment.