mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
31 lines
596 B
TypeScript
31 lines
596 B
TypeScript
![]() |
// ** MUI Imports
|
||
|
import { Theme } from '@mui/material/styles'
|
||
|
|
||
|
const Tabs = (theme: Theme) => {
|
||
|
return {
|
||
|
MuiTabs: {
|
||
|
styleOverrides: {
|
||
|
vertical: {
|
||
|
minWidth: 130,
|
||
|
marginRight: theme.spacing(4),
|
||
|
borderRight: `1px solid ${theme.palette.divider}`,
|
||
|
'& .MuiTab-root': {
|
||
|
minWidth: 130
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
MuiTab: {
|
||
|
styleOverrides: {
|
||
|
textColorSecondary: {
|
||
|
'&.Mui-selected': {
|
||
|
color: theme.palette.text.secondary
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Tabs
|