📱 Boxed layout for larger screens
This commit is contained in:
20
src/App.vue
20
src/App.vue
@ -9,14 +9,18 @@ import { loading } from "./store";
|
||||
|
||||
<template>
|
||||
<TitleBar />
|
||||
<DateSelector v-show="$route.name != 'Settings' && $route.name != 'Login'" />
|
||||
<main>
|
||||
<LoadingElement
|
||||
:active="loading"
|
||||
v-show="$route.name != 'Settings' && $route.name != 'Login'"
|
||||
/>
|
||||
<RouterView />
|
||||
</main>
|
||||
<div class="center">
|
||||
<main>
|
||||
<DateSelector
|
||||
v-show="$route.name != 'Settings' && $route.name != 'Login'"
|
||||
/>
|
||||
<LoadingElement
|
||||
:active="loading"
|
||||
v-show="$route.name != 'Settings' && $route.name != 'Login'"
|
||||
/>
|
||||
<RouterView />
|
||||
</main>
|
||||
</div>
|
||||
<BottomNavbar v-show="$route.name != 'Login'" />
|
||||
</template>
|
||||
|
||||
|
Reference in New Issue
Block a user