Fixed actors overview page grow.

This commit is contained in:
DebaucheryLibrarian 2024-08-20 02:31:51 +02:00
parent 24a4bd5204
commit 527484b617
2 changed files with 9 additions and 1 deletions

View File

@ -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);
}

View File

@ -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>