Improved movie page styling. Fixed parentless channel icon in channel filter.
This commit is contained in:
parent
0ad62a7305
commit
becd196b01
|
@ -47,7 +47,7 @@
|
||||||
:title="entity.name"
|
:title="entity.name"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
v-if="entity.isIndependent || entity.type === 'network'"
|
v-if="entity.isIndependent || entity.type === 'network' || !entity.parent"
|
||||||
:src="`/logos/${entity.slug}/favicon_dark.png`"
|
:src="`/logos/${entity.slug}/favicon_dark.png`"
|
||||||
class="favicon"
|
class="favicon"
|
||||||
>
|
>
|
||||||
|
|
|
@ -228,6 +228,7 @@ function updateFilter(prop, value, reload = true) {
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.movies-page {
|
.movies-page {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
background: var(--background-base-10);
|
background: var(--background-base-10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="page">
|
||||||
<Movies />
|
<Movies />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -7,3 +7,10 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import Movies from '#/components/movies/movies.vue';
|
import Movies from '#/components/movies/movies.vue';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.page {
|
||||||
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
@ -249,6 +249,7 @@ const scenes = pageContext.pageProps.scenes;
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.page {
|
.page {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
background: var(--background-base-10);
|
background: var(--background-base-10);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue