beta01-he65s/src/styles/global.css
2026-05-02 22:21:47 +00:00

28 lines
452 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-background text-white antialiased;
}
}
/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary);
}