You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
237 B

* {
box-sizing: border-box;
}
3 years ago
#root {
display: grid;
grid-template: 1fr / 1fr;
3 years ago
height: 100vh;
}
body,
html {
font-family: sans-serif;
3 years ago
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}