icns-frontend/styles/global.ts

15 lines
233 B
TypeScript
Raw Normal View History

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