Styles
Styles system has 2 parts, namely global & override
Overview
Global Style
import { css, createGlobalStyle } from 'styled-components';
const StyleGlobal = createGlobalStyle`${css`
body {
font-family: 'Montserrat', sans-serif;
}
`}`;
export default StyleGlobal;Override Style
Last updated