Spaces:
Running
Running
File size: 622 Bytes
24e4478 1a0123b 24e4478 1a0123b 24e4478 1a0123b 24e4478 1a0123b 24e4478 1a0123b 24e4478 1a0123b 24e4478 1a0123b 24e4478 1a0123b | 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 26 27 28 29 30 31 32 33 34 | /* global app styles */
:root {
--bg: #f6f7fb;
--card: #ffffff;
--muted: #6b7280;
--accent: #2563eb;
}
html,
body {
height: 100%;
margin: 0;
background: var(--bg);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #0f172a;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
Arial;
}
/* subtle scrollbar */
* {
scrollbar-width: thin;
scrollbar-color: rgba(2, 6, 23, 0.12) rgba(0, 0, 0, 0);
}
*::-webkit-scrollbar {
height: 8px;
width: 8px;
}
*::-webkit-scrollbar-thumb {
background: rgba(2, 6, 23, 0.08);
border-radius: 8px;
}
|