Added collapse to table

This commit is contained in:
Luis-Hebendanz
2023-08-14 18:25:06 +02:00
parent b112969d87
commit 3489ebc5c4
2 changed files with 258 additions and 187 deletions

View File

@@ -1,12 +1,30 @@
import { createTheme } from "@mui/material/styles";
export const darkTheme = createTheme({
breakpoints: {
values: {
xs: 0,
sm: 400,
md: 900,
lg: 1200,
xl: 1536,
},
},
palette: {
mode: "dark",
},
});
export const lightTheme = createTheme({
breakpoints: {
values: {
xs: 0,
sm: 400,
md: 900,
lg: 1200,
xl: 1536,
},
},
palette: {
mode: "light",
},