webkit scrollbar display none

This commit is contained in:
mattyl006 2022-07-15 11:13:00 +02:00
parent 757cf72e12
commit 23ab91688d

View File

@ -11,7 +11,7 @@ const FiltersMenuStyle = styled(FlexColumn)`
position: fixed;
top: 0;
right: 0;
overflow-y: scroll;
overflow-y: auto;
width: 260px;
height: 100vh;
max-height: 650px;
@ -22,6 +22,10 @@ const FiltersMenuStyle = styled(FlexColumn)`
transition: transform 0.5s ease-in-out;
z-index: 3;
::-webkit-scrollbar {
display: none;
}
@media (min-width: ${({theme}) => theme.overMobile}) {
width: 310px;
max-height: none;