mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-16 16:26:16 +02:00
* core/ui: improve frontend build size * remove luxon * add lodash * remove console.log * only generate sourcemap when watching
6 lines
228 B
TypeScript
6 lines
228 B
TypeScript
import { styled } from "@mui/material";
|
|
import { BaseCSSProperties } from "@mui/material/styles/createMixins";
|
|
|
|
export const ToolbarOffset = styled("div")(({ theme }) => ({
|
|
...(theme.mixins.toolbar as BaseCSSProperties),
|
|
}));
|