From 02f3e829875be3ec5be0eed7e36d5a58148c73e8 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Thu, 2 Apr 2026 08:48:06 +0200 Subject: [PATCH] fix(ui): update styles and localization in UsersView and AppShell - Added styles to ensure the app shell content occupies only the remaining space, preventing overflow issues. - Updated the header in UsersView to reflect accurate localization for user administration. --- frontend/src/assets/styles.scss | 10 ++++++++++ frontend/src/views/admin/UsersView.vue | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/frontend/src/assets/styles.scss b/frontend/src/assets/styles.scss index cd58750..cd9e7be 100644 --- a/frontend/src/assets/styles.scss +++ b/frontend/src/assets/styles.scss @@ -269,6 +269,16 @@ main, overflow: hidden; } +/* Hauptinhalt in der App-Shell: nur verbleibenden Platz einnehmen, nicht 100vh — + sonst wächst main mit dem Inhalt über den Viewport hinaus und .contentscroll scrollt nicht. */ +.app-shell > .app-shell__content.app-content, +.app-shell > .app-shell__content.contenthidden { + flex: 1 1 0%; + min-height: 0; + height: auto; + max-height: none; +} + .contentscroll { width: 100%; height: 100%; diff --git a/frontend/src/views/admin/UsersView.vue b/frontend/src/views/admin/UsersView.vue index 2dba86a..27686ee 100644 --- a/frontend/src/views/admin/UsersView.vue +++ b/frontend/src/views/admin/UsersView.vue @@ -2,7 +2,7 @@
Administration -

{{ $t('navigation.m-administration.useradministration') }}

+

{{ $t('navigation.m-administration.users') }}

Benutzer suchen, Kerndaten anpassen und Sperrstatus direkt im System pflegen.