mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-26 03:07:29 +08:00
25 lines
489 B
CSS
25 lines
489 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
|
|
--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
|
|
}
|
|
|
|
body {
|
|
@apply bg-zinc-950 text-zinc-50 antialiased selection:bg-indigo-500/30;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
@apply bg-zinc-800 rounded-full;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
@apply bg-zinc-700;
|
|
}
|