From 12151b4c2f647a16738f454bd9b7b5b329a97531 Mon Sep 17 00:00:00 2001 From: aumetra Date: Thu, 7 Nov 2024 15:08:00 +0100 Subject: [PATCH] port pretty much everything --- kitsune-fe/src/app.css | 15 ++++++++++++++- kitsune-fe/src/routes/+layout.svelte | 1 - 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/kitsune-fe/src/app.css b/kitsune-fe/src/app.css index fff3546f7..64b78a074 100644 --- a/kitsune-fe/src/app.css +++ b/kitsune-fe/src/app.css @@ -5,10 +5,23 @@ @layer base { body { @apply min-h-screen min-w-max bg-gradient-to-bl from-dark-2 via-dark-1 to-slate-950 bg-no-repeat; - @apply prose prose-slate prose-invert; + @apply prose prose-slate prose-invert font-mono; } a { /*@apply text-pink-400;*/ } + + ::-webkit-scrollbar { + width: 0.666em; + height: 0.666em; + } + + ::-webkit-scrollbar-track { + box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); + } + + ::-webkit-scrollbar-thumb { + @apply bg-shade2-light; + } } diff --git a/kitsune-fe/src/routes/+layout.svelte b/kitsune-fe/src/routes/+layout.svelte index 5851e9504..2b46664be 100644 --- a/kitsune-fe/src/routes/+layout.svelte +++ b/kitsune-fe/src/routes/+layout.svelte @@ -1,6 +1,5 @@