Compost / frontend /_src /app /globals.css
abc1181's picture
Fix health endpoint routing order
de886f2
Raw
History Blame Contribute Delete
523 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #09090b;
--foreground: #fafafa;
}
* { box-sizing: border-box; }
body {
background: var(--background);
color: var(--foreground);
font-family: 'Inter', system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111113; }
::-webkit-scrollbar-thumb { background: #27272a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f46; }