main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
994 bytes
|
Line | |
---|
1 | import { Theme } from '@mui/material/styles';
|
---|
2 | import { tabClasses } from '@mui/material/Tab';
|
---|
3 |
|
---|
4 | // ----------------------------------------------------------------------
|
---|
5 |
|
---|
6 | export function tabs(theme: Theme) {
|
---|
7 | return {
|
---|
8 | MuiTabs: {
|
---|
9 | styleOverrides: {
|
---|
10 | indicator: {
|
---|
11 | backgroundColor: theme.palette.text.primary,
|
---|
12 | },
|
---|
13 | scrollButtons: {
|
---|
14 | width: 48,
|
---|
15 | borderRadius: '50%',
|
---|
16 | },
|
---|
17 | },
|
---|
18 | },
|
---|
19 | MuiTab: {
|
---|
20 | styleOverrides: {
|
---|
21 | root: {
|
---|
22 | padding: 0,
|
---|
23 | opacity: 1,
|
---|
24 | minWidth: 48,
|
---|
25 | minHeight: 48,
|
---|
26 | fontWeight: theme.typography.fontWeightSemiBold,
|
---|
27 | '&:not(:last-of-type)': {
|
---|
28 | marginRight: theme.spacing(3),
|
---|
29 | [theme.breakpoints.up('sm')]: {
|
---|
30 | marginRight: theme.spacing(5),
|
---|
31 | },
|
---|
32 | },
|
---|
33 | [`&:not(.${tabClasses.selected})`]: {
|
---|
34 | color: theme.palette.text.secondary,
|
---|
35 | },
|
---|
36 | },
|
---|
37 | },
|
---|
38 | },
|
---|
39 | };
|
---|
40 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.