File size: 438 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { createSystem, defaultConfig } from "@chakra-ui/react"
export const system = createSystem(defaultConfig, {
theme: {
tokens: {
fonts: {
heading: { value: "var(--font-inter)" },
body: { value: "var(--font-inter)" },
},
},
},
globalCss: {
":root": {
"--header-height": { base: "64px", md: "104px" },
"--content-height": "calc(100dvh - var(--header-height))",
},
},
})
|