From 2549a442a0ef57f24915df13a76a105f09aca22b Mon Sep 17 00:00:00 2001 From: TikiTDO <326184+TikiTDO@users.noreply.github.com> Date: Wed, 11 Sep 2024 09:28:34 -0400 Subject: [PATCH] Fixes SASS deprecation warning https://sass-lang.com/documentation/breaking-changes/mixed-decls/ --- src/main.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main.scss b/src/main.scss index c2a4a3db..a2ed233a 100644 --- a/src/main.scss +++ b/src/main.scss @@ -64,15 +64,15 @@ pointer-events: auto; .rg-resize-handle { - &:hover { - cursor: col-resize; - background-color: $resize-handle-gb-color; - } - position: absolute; right: 0; width: $resize-handle-line-width; height: 100%; + + &:hover { + cursor: col-resize; + background-color: $resize-handle-gb-color; + } } } @@ -241,4 +241,4 @@ top: 50%; left: 50%; } -} \ No newline at end of file +}