mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
16 lines
218 B
TypeScript
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;
|