File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,17 @@ setLocale()
85
85
<style lang="scss" scoped>
86
86
@use ' @/assets/styles/themes/adamant/_mixins.scss' ;
87
87
88
+ .application--linear-gradient {
89
+ overflow : hidden ;
90
+
91
+ & :deep (.v-application__wrap ) {
92
+ min-height : unset ;
93
+ margin-top : env (safe-area-inset-top );
94
+ height : calc (100vh - env (safe-area-inset-bottom ) - env (safe-area-inset-top ));
95
+ height : calc (100 dvh - env (safe-area-inset-bottom ) - env (safe-area-inset-top ));
96
+ }
97
+ }
98
+
88
99
.v-theme--light.application--linear-gradient {
89
100
@include mixins .linear-gradient-light ();
90
101
}
Original file line number Diff line number Diff line change 2
2
<slot />
3
3
4
4
<app-snackbar />
5
- <app-navigation v-if =" showNavigation" />
5
+ <app-navigation v-if =" showNavigation" absolute />
6
6
</template >
7
7
8
8
<script setup lang="ts">
Original file line number Diff line number Diff line change 9
9
<slot />
10
10
</v-container >
11
11
<app-snackbar />
12
- <app-navigation v-if =" showNavigation" />
12
+ <app-navigation v-if =" showNavigation" absolute />
13
13
</template >
14
14
15
15
<script setup lang="ts">
Original file line number Diff line number Diff line change @@ -222,6 +222,8 @@ onBeforeUnmount(() => {
222
222
223
223
& __with-aside {
224
224
max-width : 1512px ;
225
+ height : 100% ;
226
+
225
227
@media (min-width : 1513px ) {
226
228
border-right : 2px solid black ;
227
229
border-left : 2px solid black ;
@@ -231,7 +233,7 @@ onBeforeUnmount(() => {
231
233
& __aside {
232
234
width : var (--asideWidth );
233
235
min-height : 100% ;
234
- height : calc (100 vh - var (--v-layout-bottom ));
236
+ height : calc (100 % - var (--v-layout-bottom ));
235
237
border-right : 2px solid black ;
236
238
position : relative ;
237
239
max-width : 75% ;
You can’t perform that action at this time.
0 commit comments