admin / SAynapse-Horizon
publicSelf Hosted Cyber Threat Intelligence Hub
SAynapse-Horizon / Synapse-Horizon / src / index.css
753 B · main
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 35 36 37 38 39 40 41 42 | @tailwind base; @tailwind components; @tailwind utilities; :root { color-scheme: dark; } html, body, #root { height: 100%; } body { margin: 0; background-color: #0a0e14; color: #e2e8f0; font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; } /* Slim, understated scrollbars for the SOC canvas */ * { scrollbar-width: thin; scrollbar-color: #334155 transparent; } *::-webkit-scrollbar { width: 8px; height: 8px; } *::-webkit-scrollbar-thumb { background-color: #334155; border-radius: 8px; } *::-webkit-scrollbar-thumb:hover { background-color: #475569; } *::-webkit-scrollbar-track { background: transparent; } |