refactor(admin): restructure adult verification and erotic moderation views for improved layout

- Updated the AdultVerificationView and EroticModerationView components to utilize a new layout structure with content scrolling and hidden overflow for better user experience.
- Adjusted styles in styles.scss to support the new layout, ensuring proper height and overflow handling for content sections.
This commit is contained in:
Torsten Schulz (local)
2026-03-27 11:18:42 +01:00
parent 25b658acce
commit 02837c7b73
3 changed files with 178 additions and 165 deletions

View File

@@ -276,13 +276,16 @@ main,
}
.app-content__inner > .contenthidden {
height: auto;
overflow: visible;
flex: 1 1 auto;
min-height: 0;
height: 100%;
overflow: hidden;
}
.app-content__inner > .contenthidden > .contentscroll {
height: auto;
overflow: visible;
min-height: 0;
height: 100%;
overflow: auto;
}
.surface-card {