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;
}
#root {
display: grid;
grid-template: 1fr / 1fr;
height: 100vh;
}
body,
html {
font-family: sans-serif;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}