mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 13:03:46 +00:00
40 lines
683 B
CSS
40 lines
683 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
body {
|
|
@apply bg-black text-white antialiased;
|
|
font-family: 'Open Sans', system-ui, sans-serif;
|
|
}
|
|
|
|
::selection {
|
|
@apply bg-accent/30 text-white;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
@apply w-2;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
@apply bg-zinc-900;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
@apply bg-zinc-700 rounded-full;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
@apply bg-zinc-600;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.glass {
|
|
@apply bg-white/[0.02] backdrop-blur-md border border-white/10;
|
|
}
|
|
|
|
.glass-hover {
|
|
@apply hover:bg-white/[0.04] hover:border-white/20 transition-all;
|
|
}
|
|
}
|