Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 0ca847a878 0.27.4 2024-08-20 02:31:54 +02:00
DebaucheryLibrarian 527484b617 Fixed actors overview page grow. 2024-08-20 02:31:51 +02:00
4 changed files with 12 additions and 4 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);
}

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.27.3",
"version": "0.27.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.27.3",
"version": "0.27.4",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@ -78,5 +78,5 @@
"postcss-custom-media": "^10.0.2",
"postcss-nesting": "^12.0.2"
},
"version": "0.27.3"
"version": "0.27.4"
}

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>