Move notification snackbars when resting bar is shown (#10177)

Allows top-most notification to still be shown
This commit is contained in:
Philip Karpiak 2018-03-30 16:34:06 -04:00 committed by Sabe Jones
parent 21cf5d2321
commit 64e86bad91
2 changed files with 5 additions and 1 deletions

View file

@ -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")

View file

@ -11,6 +11,10 @@
top: 65px;
width: 350px;
z-index: 1041; // 1041 is above modal backgrounds
&.restingInn {
top: 105px;
}
}
</style>