improve index/tag/place layout

This commit is contained in:
lesion
2023-03-27 17:19:27 +02:00
parent 0682feaaf8
commit f960400085
4 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
<template>
<v-container class='px-2 px-sm-6 pt-0'>
<v-container id='home' class='px-2 px-sm-6 pt-0'>
<h1 class='d-block text-h4 font-weight-black text-center text-uppercase mt-10 mx-auto w-100 text-underline'>
<u>{{ place.name }}</u>
</h1>
@@ -7,7 +7,7 @@
<!-- Events -->
<div id="events">
<v-lazy class='event' :value='idx<9' v-for='(event, idx) in events' :key='event.id' :min-height='hide_thumbs ? 105 : undefined' :options="{ threshold: .5, rootMargin: '500px' }">
<v-lazy class='event v-card' :value='idx<9' v-for='(event, idx) in events' :key='event.id' :min-height='hide_thumbs ? 105 : undefined' :options="{ threshold: .5, rootMargin: '500px' }" :class="{ 'theme--dark': is_dark }">
<Event :event='event' :lazy='idx > 9' />
</v-lazy>
</div>
@@ -33,7 +33,7 @@ export default {
},
computed: {
...mapState(['settings']),
...mapGetters(['hide_thumbs']),
...mapGetters(['hide_thumbs', 'is_dark']),
},
asyncData({ $axios, params, error }) {
try {