Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
438 Bytes
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))",
},
},
})