From eee41142b1359e8f58d2f2bd636bb9aaced89b51 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Tue, 12 Sep 2017 01:06:14 +0200 Subject: [PATCH] Client Fixes (#9026) * loading screen * debug yesterdailies modal --- website/client/app.vue | 11 ++++-- website/client/assets/scss/index.scss | 1 + .../client/assets/scss/loading-screen.scss | 34 +++++++++++++++++++ website/client/assets/scss/page.scss | 2 +- website/client/components/notifications.vue | 33 ++++++++++++++++++ website/client/index.html | 7 ++++ 6 files changed, 84 insertions(+), 4 deletions(-) create mode 100644 website/client/assets/scss/loading-screen.scss 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 */ + }