icns-frontend/styles/global.ts
2022-12-05 17:57:06 +09:00

15 lines
233 B
TypeScript

import { createGlobalStyle } from "styled-components";
export const GlobalStyle = createGlobalStyle`
html, body {
padding: 0;
margin: 0;
font-family: 'Inter', sans-serif;
}
* {
box-sizing: border-box;
}
`;