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

@@ -21,6 +21,8 @@ todo: Joyce after testing issues:
todo: login form on mobile is cut off due to the 100vh bug on chrome as per nav drawer logout issue todo: login form on mobile is cut off due to the 100vh bug on chrome as per nav drawer logout issue
fix might be to put a 100% on something app level somewhere or maybe just the login form since it's the only one that has that issue fix might be to put a 100% on something app level somewhere or maybe just the login form since it's the only one that has that issue
todo: several screenshots showing mobile layout issue in emails
### RETEST ALL DEVICES WHEN GET TO HERE ##### ### RETEST ALL DEVICES WHEN GET TO HERE #####
TO TEST: TO TEST:

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 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 https://github.com/vuetifyjs/vuetify/issues/9607
height="100%"
--> -->
<v-navigation-drawer <v-navigation-drawer
v-if="isAuthenticated" v-if="isAuthenticated"
@@ -15,7 +16,6 @@
app app
temporary temporary
width="345" width="345"
height="100%"
> >
<template v-slot:prepend> <template v-slot:prepend>
<div class="subtitle-2 primary--text pt-2 pl-4"> <div class="subtitle-2 primary--text pt-2 pl-4">

View File

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