icns-frontend/styles/global.ts
HeesungB 047c9d6af8 WIP
2022-12-06 19:41:38 +09:00

31 lines
646 B
TypeScript

import { createGlobalStyle } from "styled-components";
import color from "./color";
export const GlobalStyle = createGlobalStyle`
html, body {
padding: 0;
margin: 0;
font-family: 'Inter', sans-serif;
background-color: ${color.black};
font-size: 0.85vw;
//font-size: 22px;
background-size: 5rem 5rem;
background-position: top left;
background-repeat: repeat;
background-image: linear-gradient(
rgba(51, 51, 51, 1) 0.1rem,
transparent 0.1rem
),
linear-gradient(90deg, rgba(51, 51, 51, 1) 0.1rem, transparent 0.1rem);
}
* {
box-sizing: border-box;
}
`;