Spaces:
Sleeping
Sleeping
File size: 435 Bytes
7056be6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | :root {
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.6;
font-weight: 400;
color: #141414;
background-color: #f3f4f8;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
--app-shell-height: 100vh;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: #f3f4f8;
min-height: 100vh;
}
#root {
min-height: 100vh;
}
|