Files
daedalOS/styles/GlobalStyle.tsx
2021-01-16 22:22:15 -08:00

16 lines
218 B
TypeScript

import { createGlobalStyle } from 'styled-components';
const GlobalStyle = createGlobalStyle`
html,
body {
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
`;
export default GlobalStyle;