diff options
| author | 0t4u <61939142+0t4u@users.noreply.github.com> | 2022-12-05 20:33:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-05 20:33:28 +0000 |
| commit | c6aa70a64731b608fade3acab48c1d1d2df280b6 (patch) | |
| tree | a92d130d6b927e520ab40692bc504db7606f2092 /styles/tailwind.css | |
Add files via upload
Diffstat (limited to 'styles/tailwind.css')
| -rw-r--r-- | styles/tailwind.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/styles/tailwind.css b/styles/tailwind.css new file mode 100644 index 0000000..c4a3ba1 --- /dev/null +++ b/styles/tailwind.css @@ -0,0 +1,34 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +body, +html { + @apply bg-black text-white; + scroll-behavior: smooth; +} + +html { + height: 100%; +} +body { + min-height: 100%; + @apply flex flex-col; +} +#__next { + @apply flex flex-1 flex-col; +} + +*::-webkit-scrollbar-track { + @apply bg-gray-900; +} + +*::-webkit-scrollbar { + width: 8px; + height: 8px; + @apply bg-gray-900; +} + +*::-webkit-scrollbar-thumb { + @apply bg-gray-600; +} |
