Spaces:
Sleeping
Sleeping
File size: 305 Bytes
9be21ef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | :root {
font-family: system-ui, Arial, sans-serif;
color: #1f2937;
background-color: #ffffff;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
#root {
min-height: 100vh;
}
|