From 652b4a88772e5d48959d876ca088d84a8de3071e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Tom=C3=A1=C5=A1ko?= Date: Tue, 16 Jan 2024 18:17:31 +0100 Subject: [PATCH] FIX: Fized size panel does not respect given dimensions --- .../src/gui/Components/ScreenElements/HBoxVBox.module.scss | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/frontend-html/src/gui/Components/ScreenElements/HBoxVBox.module.scss b/frontend-html/src/gui/Components/ScreenElements/HBoxVBox.module.scss index 69a4e6ca55..e562a6d6a9 100644 --- a/frontend-html/src/gui/Components/ScreenElements/HBoxVBox.module.scss +++ b/frontend-html/src/gui/Components/ScreenElements/HBoxVBox.module.scss @@ -24,8 +24,7 @@ along with ORIGAM. If not, see . display: flex; flex-direction: row; - &.noWidth, - &.noHeight { + &.noWidth.noHeight { flex-grow: 1; } } @@ -38,8 +37,7 @@ along with ORIGAM. If not, see . display: flex; flex-direction: column; - &.noHeight, - &.noWidth { + &.noHeight.noWidth { flex-grow: 1; } }