From c6aa70a64731b608fade3acab48c1d1d2df280b6 Mon Sep 17 00:00:00 2001 From: 0t4u <61939142+0t4u@users.noreply.github.com> Date: Mon, 5 Dec 2022 20:33:28 +0000 Subject: Add files via upload --- styles/tailwind.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 styles/tailwind.css (limited to 'styles/tailwind.css') 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; +} -- cgit v1.2.3