This commit is contained in:
Waylon Walker 2024-05-08 20:45:33 -05:00
commit 0500266b92
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
21 changed files with 1766 additions and 0 deletions

28
tailwind/app.css Normal file
View file

@ -0,0 +1,28 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
scroll-behavior: smooth;
@apply bg-zinc-800 text-white autofill:bg-yellow-500;
}
::-webkit-scrollbar {
@apply h-4 w-4;
}
::-webkit-scrollbar-track {
@apply rounded-full bg-zinc-900;
}
body::-webkit-scrollbar-track {
@apply rounded-full bg-pink-600;
}
::-webkit-scrollbar-thumb {
@apply rounded-full bg-zinc-600 hover:bg-zinc-500;
}
body::-webkit-scrollbar-thumb {
@apply rounded-full bg-cyan-500 hover:bg-cyan-400;
}