fix(ui): update styles and localization in UsersView and AppShell
All checks were successful
Deploy to production / deploy (push) Successful in 3m1s
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:
@@ -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%;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div class="admin-users">
|
||||
<section class="admin-users__hero surface-card">
|
||||
<span class="admin-users__eyebrow">Administration</span>
|
||||
<h1>{{ $t('navigation.m-administration.useradministration') }}</h1>
|
||||
<h1>{{ $t('navigation.m-administration.users') }}</h1>
|
||||
<p>Benutzer suchen, Kerndaten anpassen und Sperrstatus direkt im System pflegen.</p>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user