From ec2f9558775f76bdafadb11fd196e884e4ae928f Mon Sep 17 00:00:00 2001 From: Toto Date: Mon, 11 May 2026 19:37:50 -0500 Subject: [PATCH] Fix Firefox table scrollbar styling --- src/components/layout/table/Table.svelte | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/layout/table/Table.svelte b/src/components/layout/table/Table.svelte index abad324..a55a37e 100644 --- a/src/components/layout/table/Table.svelte +++ b/src/components/layout/table/Table.svelte @@ -84,8 +84,9 @@ .table-wrapper { max-width: 100%; overflow-x: scroll; - scrollbar-color: var(--layer200); + scrollbar-color: var(--layer200) transparent; scrollbar-width: thin; + scrollbar-gutter: stable; } .table-wrapper::-webkit-scrollbar-track { background-color: transparent; @@ -104,7 +105,8 @@ overflow-x: visible; overflow-y: visible !important; scrollbar-width: unset; - scrollbar-color: transparent; + scrollbar-color: auto; + scrollbar-gutter: auto; } .table.min-width { min-width: 1440px; @@ -157,8 +159,9 @@ .data-wrapper { height: calc(100% - 39px); overflow-y: scroll; - scrollbar-color: var(--layer200); + scrollbar-color: var(--layer200) transparent; scrollbar-width: thin; + scrollbar-gutter: stable; } .data-wrapper::-webkit-scrollbar-track { background-color: transparent; @@ -236,4 +239,4 @@ - \ No newline at end of file +