From a3207e52b5239d35009f7477a9238fc40d1de31c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 27 Mar 2024 14:17:43 -0300 Subject: [PATCH] core: frontend: App: Fix v-stepper disappearing when the screen width is small MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- core/frontend/src/App.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/frontend/src/App.vue b/core/frontend/src/App.vue index d4f14d7f1..9ce800c69 100644 --- a/core/frontend/src/App.vue +++ b/core/frontend/src/App.vue @@ -868,6 +868,11 @@ div.pirate-marker.v-icon { } } +/* Fix v-stepper disappearing when the screen is small*/ +.v-stepper__label { + display: block !important; +} + html { overflow: auto }