From 77d119888c5b4dcb20c61251288bc03b322ddeb3 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Mon, 15 Dec 2025 11:03:24 -0700 Subject: [PATCH] Revert "feat: add showScrollbar prop to VirtualGrid (#7227)" This reverts commit f385ee8ca21e6e798ae5cf4630c27aa268b8b2dd. --- src/components/common/VirtualGrid.vue | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/common/VirtualGrid.vue b/src/components/common/VirtualGrid.vue index 134778778a..89de6e421b 100644 --- a/src/components/common/VirtualGrid.vue +++ b/src/components/common/VirtualGrid.vue @@ -117,7 +117,16 @@ onBeforeUnmount(() => { .scroll-container { height: 100%; overflow-y: auto; - scrollbar-width: thin; - scrollbar-color: var(--dialog-surface) transparent; + + /* Firefox */ + scrollbar-width: none; + + &::-webkit-scrollbar { + width: 1px; + } + + &::-webkit-scrollbar-thumb { + background-color: transparent; + } }