Web:Common:Navigation: remove x-scrollbar on tablet and mobile

This commit is contained in:
Timofey Boyko 2021-11-03 15:52:10 +08:00
parent 3d9bda87b0
commit a99111b6f6

View File

@ -159,7 +159,7 @@ const DropBox = React.forwardRef(
const currentHeight = itemsHeight.reduce((a, b) => a + b);
setDropBoxHeight(
currentHeight > window.innerHeight - 95 ? window.innerHeight - 95 : currentHeight,
currentHeight > window.innerHeight - 99 ? window.innerHeight - 99 : currentHeight,
);
});