aboutsummaryrefslogtreecommitdiff
path: root/client/src/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/index.css')
-rw-r--r--client/src/index.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/client/src/index.css b/client/src/index.css
index 777afd8..2c7597e 100644
--- a/client/src/index.css
+++ b/client/src/index.css
@@ -24,3 +24,32 @@ h1 {
font-size: 3rem;
font-weight: 400;
}
+
+::-webkit-scrollbar {
+ width: 10px;
+}
+
+::-webkit-scrollbar-thumb {
+ border-radius: 10px;
+ background: var(--color-dark);
+}
+
+/* For Firefox */
+::-moz-scrollbar {
+ width: 10px;
+}
+
+::-moz-scrollbar-thumb {
+ border-radius: 10px;
+ background: var(--color-dark);
+}
+
+/* For IE and Edge */
+::-ms-scrollbar {
+ width: 10px;
+}
+
+::-ms-scrollbar-thumb {
+ border-radius: 10px;
+ background: var(--color-dark);
+}