Fixed actors overview page grow.
This commit is contained in:
parent
24a4bd5204
commit
527484b617
|
@ -265,6 +265,7 @@ function updateFilter(prop, value, reload = true) {
|
||||||
.page {
|
.page {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
background: var(--background-base-10);
|
background: var(--background-base-10);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="page">
|
||||||
<Actors />
|
<Actors />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -7,3 +7,10 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import Actors from '#/components/actors/actors.vue';
|
import Actors from '#/components/actors/actors.vue';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.page {
|
||||||
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue