[Perf] Middle Column: Fix chat opening animation performance on mobile (#3179)
This commit is contained in:
parent
177ae58c4b
commit
a9d9392d8c
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user