1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-18 00:19:49 +01:00

refactor: MuiTab font sizes (#9296)

I didn't find where this style is taken into account, but I don't like
leaving `1rem` when everything else is scaled down to 15px
This commit is contained in:
Tymoteusz Czech 2025-02-12 15:13:22 +01:00 committed by GitHub
parent 243088fdca
commit b5bd5ee3f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -424,7 +424,7 @@ export const darkTheme = createTheme({
styleOverrides: {
root: ({ theme }) => ({
color: theme.palette.text.primary,
fontSize: '1rem',
fontSize: theme.typography.body1.fontSize,
textTransform: 'none',
fontWeight: 400,
lineHeight: '1',

View File

@ -487,7 +487,7 @@ export const lightTheme = createTheme({
styleOverrides: {
root: ({ theme }) => ({
color: theme.palette.text.primary,
fontSize: '1rem',
fontSize: theme.typography.body1.fontSize,
textTransform: 'none',
fontWeight: 400,
lineHeight: '1',