Improved movie page styling. Fixed parentless channel icon in channel filter.

This commit is contained in:
DebaucheryLibrarian 2024-08-19 22:07:01 +02:00
parent 0ad62a7305
commit becd196b01
4 changed files with 11 additions and 2 deletions

View File

@ -47,7 +47,7 @@
:title="entity.name"
>
<img
v-if="entity.isIndependent || entity.type === 'network'"
v-if="entity.isIndependent || entity.type === 'network' || !entity.parent"
:src="`/logos/${entity.slug}/favicon_dark.png`"
class="favicon"
>

View File

@ -228,6 +228,7 @@ function updateFilter(prop, value, reload = true) {
<style scoped>
.movies-page {
display: flex;
flex-grow: 1;
background: var(--background-base-10);
}

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="page">
<Movies />
</div>
</template>
@ -7,3 +7,10 @@
<script setup>
import Movies from '#/components/movies/movies.vue';
</script>
<style scoped>
.page {
display: flex;
flex-grow: 1;
}
</style>

View File

@ -249,6 +249,7 @@ const scenes = pageContext.pageProps.scenes;
<style scoped>
.page {
display: flex;
flex-grow: 1;
justify-content: center;
background: var(--background-base-10);
}