Global styles
// File: /packages/my-first-theme/src/components/index.js
// ...
import { connect, Global, css } from "frontity"
const Root = ({ state }) => {
const data = state.source.get(state.router.link)
return (
<>
<Global
styles={css`
html {
font-family: system-ui, Verdana, Arial, sans-serif;
}
`}
/>
{/* ... */}
</>
)
}Last updated