fix notifs' shadow peeking in when closed on mobile

This commit is contained in:
Henry Jameson 2022-04-10 14:23:03 +03:00
parent 5b47856329
commit 4750d9bb4c

View file

@ -51,7 +51,7 @@
<div <div
v-if="currentUser" v-if="currentUser"
class="mobile-notifications-drawer" class="mobile-notifications-drawer"
:class="{ 'closed': !notificationsOpen }" :class="{ '-closed': !notificationsOpen }"
@touchstart.stop="notificationsTouchStart" @touchstart.stop="notificationsTouchStart"
@touchmove.stop="notificationsTouchMove" @touchmove.stop="notificationsTouchMove"
> >
@ -148,8 +148,9 @@
z-index: 1001; z-index: 1001;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
&.closed { &.-closed {
transform: translateX(100%); transform: translateX(100%);
box-shadow: none;
} }
} }