From f63a918f1c39f7e50508a57675c9a789ff6a41c7 Mon Sep 17 00:00:00 2001 From: eduardozgz Date: Wed, 18 Dec 2024 20:06:44 +0100 Subject: [PATCH] thin scrollbar for firefox --- apps/website/src/globals.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/website/src/globals.css b/apps/website/src/globals.css index 768bed36c..6f54d1890 100644 --- a/apps/website/src/globals.css +++ b/apps/website/src/globals.css @@ -93,3 +93,10 @@ img.emoji { background-color: #626262; } } + +@-moz-document url-prefix() { + body { + scrollbar-width: thin; + scrollbar-color: #959595 transparent; + } +}