Spaces:
Running
Running
| /* 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; | |
| } | |