Compare commits

...

1 Commits

Author SHA1 Message Date
Christian Byrne
77d119888c Revert "feat: add showScrollbar prop to VirtualGrid (#7227)"
This reverts commit f385ee8ca2.
2025-12-15 11:03:24 -07:00

View File

@@ -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;
}
}
</style>