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 {
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
align-items: stretch;
|
||||
background: var(--background-base-10);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="page">
|
||||
<Actors />
|
||||
</div>
|
||||
</template>
|
||||
|
@ -7,3 +7,10 @@
|
|||
<script setup>
|
||||
import Actors from '#/components/actors/actors.vue';
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.page {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue