🎨 Improve CSS around Swiper component

This commit is contained in:
2023-06-04 16:04:26 +02:00
parent 4508ba3fbd
commit 819e63cf31
7 changed files with 42 additions and 44 deletions

View File

@ -41,7 +41,9 @@ const isDataView = computed(() => {
<div class="center">
<main>
<DateSelector v-show="isDataView" />
<RouterView />
<div class="wrapper">
<RouterView />
</div>
</main>
<BottomNavbar v-show="$route.name != 'title.login'" />
</div>
@ -83,5 +85,13 @@ main {
width: 100%;
max-width: 900px;
overflow: hidden;
display: grid;
grid-template-rows: auto 1fr;
}
</style>
<style scoped>
.wrapper {
overflow: hidden;
}
</style>