From 1d2afeba9c3d4bc98eb937f7ca759a97ba2965bc Mon Sep 17 00:00:00 2001 From: Alexander Rivers Date: Wed, 20 May 2026 13:16:26 +0000 Subject: [PATCH] fix: Ensure scrollbars appear on Firefox (fixes #8) Added standard scrollbar-color and scrollbar-width (thin) to the global CSS wildcard so that Firefox renders the custom scrollbars alongside webkit. --- src/global.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/global.css b/src/global.css index 44c691e..342be0a 100644 --- a/src/global.css +++ b/src/global.css @@ -70,4 +70,9 @@ button{ wcm-modal { position: absolute; z-index: 1000; -} \ No newline at end of file +} +/* Global scrollbar support for Firefox matching Webkit */ +* { + scrollbar-color: var(--grey-300, #4b5563) transparent; + scrollbar-width: thin; +}