Open leo-web3 opened 1 year ago
at https://chakra-ui.com/docs/components/heading/theming#customizing-the-default-theme example code
import { defineStyle, defineStyleConfig } from '@chakra-ui/react' const custom = defineStyle({ color: "yellow.500", fontFamily: "mono", fontWeight: "semibold" // let's also provide dark mode alternatives _dark: { color: 'yellow.300', } })
in, fontWeight: "semibold" is missing at the end. The comma at the end fontWeight: "semibold",
fontWeight: "semibold"
fontWeight: "semibold",
I am working on this issue.
Description
at https://chakra-ui.com/docs/components/heading/theming#customizing-the-default-theme example code
in,
fontWeight: "semibold"
is missing at the end. The comma at the endfontWeight: "semibold",