diff --git a/svelte-app/src/styles/_tw.scss b/svelte-app/src/styles/_tw.scss
index 2c5404ae..b1a6b779 100644
--- a/svelte-app/src/styles/_tw.scss
+++ b/svelte-app/src/styles/_tw.scss
@@ -1,3 +1,5 @@
+@import 'colors';
+
@layer base {
body {
@apply h-full w-full overflow-x-hidden;
@@ -24,10 +26,10 @@
img {
box-sizing: border-box;
}
-
+
body {
@apply bg-neutral-800 text-light;
-
+
&.light {
@apply bg-neutral-0 text-dark;
}
@@ -52,7 +54,7 @@
}
}
}
-
+
::selection {
@apply bg-orange-light/90 text-light;
}
@@ -71,20 +73,29 @@
&,
&-sm {
- @apply focus-visible:outline outline-orange-light outline-2;
+ @apply outline-2 outline-orange-light focus-visible:outline;
}
&-sm {
@apply outline-offset-2;
}
}
+
+ .themed-scrollbar {
+ scrollbar-width: thin;
+ scrollbar-color: $neutral-200 transparent;
+
+ .dark & {
+ scrollbar-color: $neutral-400 transparent;
+ }
+ }
}
@layer components {
.pt-ol {
li {
ol {
- @apply list-[lower-alpha] my-3;
+ @apply my-3 list-[lower-alpha];
}
}
}
@@ -92,7 +103,7 @@
.pt-ul {
li {
ul {
- @apply list-disc my-3;
+ @apply my-3 list-disc;
}
}
}