From 66013a696c60cc4dff60c5e8a99dc713939fa014 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Thu, 29 Jan 2026 11:58:15 +0100 Subject: [PATCH] Refactor StatusBar component: Improve status item rendering by enhancing icon and label display, and update CSS for better alignment and styling. This change enhances the visual clarity and user experience of the status bar. --- .../src/components/falukant/StatusBar.vue | 29 ++++++++++++++----- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/falukant/StatusBar.vue b/frontend/src/components/falukant/StatusBar.vue index e2427f5..e3bb0be 100644 --- a/frontend/src/components/falukant/StatusBar.vue +++ b/frontend/src/components/falukant/StatusBar.vue @@ -5,19 +5,22 @@ @@ -199,7 +202,17 @@ export default { align-items: center; } -.status-icon { +.status-icon-wrapper { + display: inline-flex; + align-items: center; + margin-right: 4px; +} + +.status-icon-symbol { + font-size: 14px; +} + +.status-label { font-size: 14px; }