fix(ui): update styles and localization in UsersView and AppShell
All checks were successful
Deploy to production / deploy (push) Successful in 3m1s

- 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.
This commit is contained in:
Torsten Schulz (local)
2026-04-02 08:48:06 +02:00
parent c3b2c60362
commit 02f3e82987
2 changed files with 11 additions and 1 deletions

View File

@@ -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%;