aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/styles/base/_base.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/styles/base/_base.scss b/src/styles/base/_base.scss
index e786b17..a62a0d9 100644
--- a/src/styles/base/_base.scss
+++ b/src/styles/base/_base.scss
@@ -29,6 +29,26 @@ summary {
cursor: pointer;
}
+* {
+ scrollbar-color: var(--color-shadow) var(--color-bg-tertiary);
+ scrollbar-width: auto;
+}
+
+*::-webkit-scrollbar {
+ width: fun.convert-px(12);
+ height: fun.convert-px(12);
+}
+
+*::-webkit-scrollbar-track {
+ background: var(--color-bg-tertiary);
+}
+
+*::-webkit-scrollbar-thumb {
+ background-color: var(--color-shadow);
+ border-radius: fun.convert-px(6);
+ border: fun.convert-px(3) solid var(--color-bg-tertiary);
+}
+
body {
display: flex;
flex-flow: column nowrap;