refactor(ui): update layout styles for AppContent and AccountView components
Some checks failed
Deploy to production / deploy (push) Has been cancelled

- Changed layout from grid to flex in AccountView for improved responsiveness and alignment.
- Adjusted flex properties in AppContent to ensure proper scrolling behavior and height management.
- Enhanced styling for account settings panel to support better content overflow handling and visual consistency.
This commit is contained in:
Torsten Schulz (local)
2026-04-02 08:05:32 +02:00
parent 6d9d69dc10
commit 3fb4fb92c6
2 changed files with 15 additions and 7 deletions

View File

@@ -45,8 +45,9 @@
flex-direction: column;
}
/* flex-basis 0: Höhe richtet sich nach verbleibendem Platz, nicht nach Inhalt (sonst kein Scroll) */
.app-content__inner > :last-child {
flex: 1 1 auto;
flex: 1 1 0%;
min-height: 0;
}