can provision devices

This commit is contained in:
Carter 2024-12-09 17:26:12 -06:00
parent 0ae37f1370
commit 03f8ed20ca
18 changed files with 1467 additions and 17 deletions

View file

@ -30,6 +30,10 @@ function options(themeType: "light" | "dark"): ThemeOptions {
const highlight = themeType === "light" ? "black" : "white";
const bg = generateBackgroundShades(themeType)
return {
zIndex: {
modal: 1300,
popover: 1350
},
palette: {
primary: Colours[getPrimaryColour() as keyof typeof Colours],
secondary: Colours[getSecondaryColour() as keyof typeof Colours],
@ -122,7 +126,7 @@ function options(themeType: "light" | "dark"): ThemeOptions {
overflowX: "hidden"
},
root: {
zIndex: 1500
// zIndex: 1500
}
},
},