init
This commit is contained in:
commit
0500266b92
21 changed files with 1766 additions and 0 deletions
28
tailwind/app.css
Normal file
28
tailwind/app.css
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue