From 203ce4bd3f5b166f628532b7ee5ab303787925c6 Mon Sep 17 00:00:00 2001 From: Subhajit Pradhan Date: Tue, 12 May 2026 10:53:46 +0530 Subject: [PATCH] Fix Firefox table scrollbar styling --- src/components/layout/table/Table.svelte | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/layout/table/Table.svelte b/src/components/layout/table/Table.svelte index abad324..734c36f 100644 --- a/src/components/layout/table/Table.svelte +++ b/src/components/layout/table/Table.svelte @@ -84,7 +84,8 @@ .table-wrapper { max-width: 100%; overflow-x: scroll; - scrollbar-color: var(--layer200); + scrollbar-color: var(--layer200) transparent; + scrollbar-gutter: stable; scrollbar-width: thin; } .table-wrapper::-webkit-scrollbar-track { @@ -157,7 +158,8 @@ .data-wrapper { height: calc(100% - 39px); overflow-y: scroll; - scrollbar-color: var(--layer200); + scrollbar-color: var(--layer200) transparent; + scrollbar-gutter: stable; scrollbar-width: thin; } .data-wrapper::-webkit-scrollbar-track { @@ -236,4 +238,4 @@ - \ No newline at end of file +