mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-02 04:00:36 +00:00
Move notification snackbars when resting bar is shown (#10177)
Allows top-most notification to still be shown
This commit is contained in:
parent
21cf5d2321
commit
64e86bad91
2 changed files with 5 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -11,6 +11,10 @@
|
|||
top: 65px;
|
||||
width: 350px;
|
||||
z-index: 1041; // 1041 is above modal backgrounds
|
||||
|
||||
&.restingInn {
|
||||
top: 105px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue