Revert "feat: add showScrollbar prop to VirtualGrid (#7227)"

This reverts commit f385ee8ca2.
This commit is contained in:
Christian Byrne
2025-12-15 11:03:24 -07:00
committed by GitHub
parent abf966ab83
commit 77d119888c

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>