You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 rivejä
348 B

  1. // ==============================|| OVERRIDES - TAB ||============================== //
  2. export default function Tab(theme) {
  3. return {
  4. MuiTab: {
  5. styleOverrides: {
  6. root: {
  7. minHeight: 46,
  8. color: theme.palette.text.primary,
  9. fontSize: "1.2rem",
  10. fontWeight: 600
  11. }
  12. }
  13. }
  14. };
  15. }