diff options
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; +} |
