frontPanel/src/pages/Tariffs/CustomTab.tsx

19 lines
436 B
TypeScript
Raw Normal View History

2024-01-16 12:28:30 +00:00
import { Tab } from "@mui/material";
import { styled } from "@mui/material";
export const CustomTab = styled(Tab)(({ theme }) => ({
2024-01-16 12:28:30 +00:00
...theme.typography.body2,
color: theme.palette.primary.main,
padding: "15px",
minWidth: 0,
"&.Mui-selected": {
color: "#7e2aea",
textUnderlinePosition: "under",
textDecoration: "underline",
textUnderlineOffset: "3px",
},
"&:first-of-type": {
paddingLeft: 0,
},
}));