general layout improvement

This commit is contained in:
Jörn-Michael Miehe 2022-09-15 19:45:34 +00:00
parent cb05667d59
commit 9bd627198c
2 changed files with 12 additions and 8 deletions

View file

@ -8,13 +8,17 @@
/>
<Dashboard>
<template slot="message">
<ImageCarousel
:speed="image_speed"
:height="image_height"
:contain="image_contain"
:urls="image_urls"
/>
<Message :html="message_html" />
<div class="d-flex flex-column fill-height pb-12">
<Message :html="message_html" />
<ImageCarousel
class="mt-auto"
v-if="image_urls.length > 0"
:speed="image_speed"
:height="image_height"
:contain="image_contain"
:urls="image_urls"
/>
</div>
</template>
<template slot="calendars">
<CalendarCarousel :speed="calendar_speed" :data="calendar_data" />

View file

@ -1,5 +1,5 @@
<template>
<v-container fill-height>
<v-container fill-height class="pa-0">
<v-layout>
<v-col cols="4">
<slot name="message">MESSAGE</slot>