16 lines
369 B
CSS
16 lines
369 B
CSS
#root {
|
|
margin: 0 auto;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* Theme-aware styles */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
} |