forked from LaconicNetwork/icns-frontend
15 lines
233 B
TypeScript
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;
|
||
|
}
|
||
|
`;
|