1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

chore: override defaulyt theme for mui tab

This commit is contained in:
2021-10-18 11:34:55 +00:00
parent f1a19be07c
commit da3feb85e3

View File

@@ -2,5 +2,18 @@ import { createTheme } from '@mui/material/styles'
import palette from './palette'
export const theme = createTheme({
palette
palette,
components: {
MuiTab: {
styleOverrides: {
root: {
fontSize: '21px',
color: palette.white,
'&.Mui-selected': {
color: palette.secondary.main
}
}
}
}
}
})