This commit is contained in:
2020-08-17 19:07:53 +00:00
parent fb5f5679bb
commit 72411fa4a4
3 changed files with 9 additions and 1 deletions

View File

@@ -8,6 +8,7 @@
Also there is a height bug in vuetify with chrome on mobile (and safari) so using workaround with 100% height set on v-navigation-drawer
https://github.com/vuetifyjs/vuetify/issues/9607
height="100%"
-->
<v-navigation-drawer
v-if="isAuthenticated"
@@ -15,7 +16,6 @@
app
temporary
width="345"
height="100%"
>
<template v-slot:prepend>
<div class="subtitle-2 primary--text pt-2 pl-4">

View File

@@ -1,3 +1,9 @@
body,
html,
.app {
height: 100%;
}
.multi-line {
white-space: pre-line;
}