diff --git a/src/styles/index.scss b/src/styles/index.scss index 0a36f219c..c6b9463f6 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -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); } }