Message List: Bring back hiding scrollbar when animating

This commit is contained in:
Alexander Zinchuk 2021-08-27 21:08:57 +03:00
parent 894ea86f91
commit 84e1a5b1de

View File

@ -300,4 +300,16 @@
transform: translate3d(0, calc(-1 * (var(--symbol-menu-height) + var(--symbol-menu-footer-height))), 0);
}
}
.animating > div > & {
&::-webkit-scrollbar {
width: 0;
}
/* Styles for Firefox */
@supports (scrollbar-width: none) {
padding-right: .6875rem;
scrollbar-width: none;
}
}
}