s3si.ts/gui/src/main.css

37 lines
590 B
CSS
Raw Normal View History

2023-03-03 07:40:39 -05:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-03-03 08:29:36 -05:00
:root {
2023-03-06 07:21:29 -05:00
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
color: #0f0f0f;
background-color: #f6f6f6;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
body {
width: 100vw;
height: 100vh;
}
#root {
height: 100vh;
2023-03-03 08:29:36 -05:00
}
@media (prefers-color-scheme: dark) {
2023-03-06 07:21:29 -05:00
:root {
color: #f6f6f6;
background-color: #2f2f2f;
}
2023-03-03 08:29:36 -05:00
}