From dd5af942caf94ba4fef220adb6ba01e40fb94d81 Mon Sep 17 00:00:00 2001 From: FiliusPatris Date: Sat, 10 Apr 2021 00:06:40 +0200 Subject: [PATCH 1/3] Hide x-direction scrollbar --- styles/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/styles/index.css b/styles/index.css index f564248..0cf8923 100644 --- a/styles/index.css +++ b/styles/index.css @@ -18,4 +18,5 @@ body { margin: 0; font-family: "Work Sans", sans-serif; font-weight: 250; + overflow-x: hidden; } -- 2.30.3 From a5ae2f22210a96c4aeb9e39ca1f2ef790d6669bd Mon Sep 17 00:00:00 2001 From: FiliusPatris Date: Sat, 10 Apr 2021 00:19:25 +0200 Subject: [PATCH 2/3] Style scrollbars (for FF) (I don't know how to do that for Chrome, but tbh, I don't care.) --- styles/darkmode.css | 4 ++++ styles/index.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/styles/darkmode.css b/styles/darkmode.css index 26790f9..519b848 100644 --- a/styles/darkmode.css +++ b/styles/darkmode.css @@ -4,6 +4,10 @@ color: #dbd7db; } + html { + scrollbar-color: #dbd7db #161618 !important; + } + .button__link { background-color: #67676c; } diff --git a/styles/index.css b/styles/index.css index 8712674..a912c99 100644 --- a/styles/index.css +++ b/styles/index.css @@ -22,6 +22,10 @@ font-style: italic; } +html { + scrollbar-color: black white; +} + body { margin: 0; font-family: "Work Sans", sans-serif; -- 2.30.3 From e68553956b60e99db52814fa7b1e06499248e9ba Mon Sep 17 00:00:00 2001 From: FiliusPatris Date: Sat, 10 Apr 2021 00:20:58 +0200 Subject: [PATCH 3/3] Fix intendation style --- styles/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/index.css b/styles/index.css index a912c99..f0d0ce8 100644 --- a/styles/index.css +++ b/styles/index.css @@ -30,7 +30,7 @@ body { margin: 0; font-family: "Work Sans", sans-serif; font-weight: 250; - overflow-x: hidden; + overflow-x: hidden; text-align: center; } -- 2.30.3