[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 { .resize-handle {
position: fixed;
display: none; display: none;
position: absolute;
top: 0; top: 0;
left: 0; left: 0;
bottom: 0; width: 0;
width: 0.25rem; height: 0;
z-index: var(--z-resize-handle); z-index: -1;
cursor: var(--custom-cursor, ew-resize);
@media (min-width: 926px) { @media (min-width: 926px) {
position: absolute;
display: block; display: block;
height: auto;
bottom: 0;
width: 0.25rem;
z-index: var(--z-resize-handle);
cursor: var(--custom-cursor, ew-resize);
} }
} }