Tldraw/styles/stitches.config.ts

38 wiersze
651 B
TypeScript
Czysty Zwykły widok Historia

2021-05-09 12:03:39 +00:00
import { createCss, global } from "@stitches/react"
const { styled, css, theme } = createCss({
theme: {
colors: {},
space: {},
fontSizes: {},
fonts: {},
fontWeights: {},
lineHeights: {},
letterSpacings: {},
sizes: {},
borderWidths: {},
borderStyles: {},
radii: {},
shadows: {},
zIndices: {},
transitions: {},
},
})
const light = theme({})
const dark = theme({})
const globalStyles = global({
"*": { boxSizing: "border-box" },
2021-05-09 13:04:42 +00:00
"html, body": {
padding: "0",
margin: "0",
overscrollBehavior: "none",
},
2021-05-09 12:03:39 +00:00
})
export default styled
export { css, globalStyles, light, dark }