From 9f5f953b469c2d11f77456b22fcc9882554efd05 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Sat, 4 May 2024 01:05:03 +0200 Subject: [PATCH] 'Edit shortcuts' bar banner now doesn't take up vertical space while inactive --- src/csui/src/res-common/common.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/csui/src/res-common/common.scss b/src/csui/src/res-common/common.scss index d9c522a..264c2bb 100644 --- a/src/csui/src/res-common/common.scss +++ b/src/csui/src/res-common/common.scss @@ -117,11 +117,16 @@ h1, h2, h3 { } .options-bar { + position: absolute; + width: calc(100% - 4rem); + top: 0; + margin: 1rem; padding: 1rem; &.isEditing { background-color: $primary; + position: relative; color: #000; } }