mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 23:44:11 +02:00
23 lines
498 B
TypeScript
23 lines
498 B
TypeScript
import { createGlobalStyle } from "styled-components"
|
|
import {
|
|
BASE_FONT_SIZE,
|
|
BASE_LINE_HEIGHT,
|
|
fontFamily,
|
|
} from "./design/typography"
|
|
|
|
export const GlobalStyles = createGlobalStyle`
|
|
html {
|
|
font-family: ${fontFamily.body};
|
|
-ms-text-size-adjust: 100%;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-size: ${BASE_FONT_SIZE}px;
|
|
line-height: ${BASE_LINE_HEIGHT}px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
`
|