diff --git a/website/client/app.vue b/website/client/app.vue index 9cb26b9623..1c629aabff 100644 --- a/website/client/app.vue +++ b/website/client/app.vue @@ -10,7 +10,7 @@ div p {{currentTip}} #app(:class='{"casting-spell": castingSpell}') amazon-payments-modal - snackbars + snackbars(:class='{"restingInn": showRestingBanner}') router-view(v-if="!isUserLoggedIn || isStaticPage") template(v-else) template(v-if="isUserLoaded") diff --git a/website/client/components/snackbars/notifications.vue b/website/client/components/snackbars/notifications.vue index 18705af494..26de1aa0a6 100644 --- a/website/client/components/snackbars/notifications.vue +++ b/website/client/components/snackbars/notifications.vue @@ -11,6 +11,10 @@ top: 65px; width: 350px; z-index: 1041; // 1041 is above modal backgrounds + + &.restingInn { + top: 105px; + } }