diff --git a/website/client/app.vue b/website/client/app.vue index 897be86f33..b294bda767 100644 --- a/website/client/app.vue +++ b/website/client/app.vue @@ -3,9 +3,7 @@ snackbars router-view(v-if="!isUserLoggedIn || isStaticPage") template(v-else) - #loading-screen.h-100.w-100.d-flex.justify-content-center.align-items-center(v-if="!isUserLoaded") - p Loading... - template(v-else) + template(v-if="isUserLoaded") notifications-display app-menu .container-fluid @@ -52,6 +50,10 @@ .container-fluid { overflow-x: hidden; } + + #app { + height: calc(100% - 56px); /* 56px is the menu */ + }