Fix the scrollbar bug with non-webkit browsers

9383642562

9388427508
This commit is contained in:
Aria Minaei 2022-02-04 20:21:23 +01:00
parent 57af1156ba
commit ca5b2685bb

View file

@ -16,6 +16,8 @@ const Container = styled.div`
&::-webkit-scrollbar {
display: none;
}
scrollbar-width: none;
`
type ReceiveVerticalWheelEventFn = (ev: WheelEvent) => void