add minimum scrollbar size

This commit is contained in:
Matheus Dantas 2024-05-06 10:31:28 -03:00
parent def79000ba
commit 8282d468e1

View File

@ -115,14 +115,15 @@ export const gallerySliderPreview = style({
height: "100%",
display: "flex",
position: "relative",
overflowX: "scroll",
overflowX: "auto",
overflowY: "hidden",
"@media": {
"(min-width: 1280px)": {
width: "60%",
},
},
"::-webkit-scrollbar": {
"::-webkit-scrollbar-thumb": {
width: "20%"
}
});