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:
@@ -276,13 +276,16 @@ main,
|
|||||||
}
|
}
|
||||||
|
|
||||||
.app-content__inner > .contenthidden {
|
.app-content__inner > .contenthidden {
|
||||||
height: auto;
|
flex: 1 1 auto;
|
||||||
overflow: visible;
|
min-height: 0;
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-content__inner > .contenthidden > .contentscroll {
|
.app-content__inner > .contenthidden > .contentscroll {
|
||||||
height: auto;
|
min-height: 0;
|
||||||
overflow: visible;
|
height: 100%;
|
||||||
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.surface-card {
|
.surface-card {
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<div class="contenthidden">
|
||||||
|
<div class="contentscroll">
|
||||||
<div class="adult-verification">
|
<div class="adult-verification">
|
||||||
<section class="adult-verification__hero surface-card">
|
<section class="adult-verification__hero surface-card">
|
||||||
<span class="adult-verification__eyebrow">Administration</span>
|
<span class="adult-verification__eyebrow">Administration</span>
|
||||||
@@ -93,6 +95,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -195,6 +199,7 @@ export default {
|
|||||||
.adult-verification {
|
.adult-verification {
|
||||||
display: grid;
|
display: grid;
|
||||||
gap: 18px;
|
gap: 18px;
|
||||||
|
padding-bottom: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adult-verification__hero,
|
.adult-verification__hero,
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<div class="contenthidden">
|
||||||
|
<div class="contentscroll">
|
||||||
<div class="adult-verification">
|
<div class="adult-verification">
|
||||||
<section class="adult-verification__hero surface-card">
|
<section class="adult-verification__hero surface-card">
|
||||||
<span class="adult-verification__eyebrow">Administration</span>
|
<span class="adult-verification__eyebrow">Administration</span>
|
||||||
@@ -74,6 +76,8 @@
|
|||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -158,6 +162,7 @@ export default {
|
|||||||
.adult-verification {
|
.adult-verification {
|
||||||
display: grid;
|
display: grid;
|
||||||
gap: 18px;
|
gap: 18px;
|
||||||
|
padding-bottom: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adult-verification__hero,
|
.adult-verification__hero,
|
||||||
|
|||||||
Reference in New Issue
Block a user