[Perf] Middle Column: Fix chat opening animation performance on mobile (#3179)

This commit is contained in:
Alexander Zinchuk 2023-05-15 10:57:58 +02:00
parent 177ae58c4b
commit a9d9392d8c

View File

@ -112,17 +112,22 @@ body.cursor-ew-resize {
}
.resize-handle {
position: fixed;
display: none;
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 0.25rem;
z-index: var(--z-resize-handle);
cursor: var(--custom-cursor, ew-resize);
width: 0;
height: 0;
z-index: -1;
@media (min-width: 926px) {
position: absolute;
display: block;
height: auto;
bottom: 0;
width: 0.25rem;
z-index: var(--z-resize-handle);
cursor: var(--custom-cursor, ew-resize);
}
}