Skip to content
Snippets Groups Projects
Commit 4750d9bb authored by HJ's avatar HJ :fire:
Browse files

fix notifs' shadow peeking in when closed on mobile

parent 5b478563
No related branches found
No related tags found
2 merge requests!1711Update stable - 2.5.0 release,!1503Layout refactoring + Three column mode
......@@ -51,7 +51,7 @@
<div
v-if="currentUser"
class="mobile-notifications-drawer"
:class="{ 'closed': !notificationsOpen }"
:class="{ '-closed': !notificationsOpen }"
@touchstart.stop="notificationsTouchStart"
@touchmove.stop="notificationsTouchMove"
>
......@@ -148,8 +148,9 @@
z-index: 1001;
-webkit-overflow-scrolling: touch;
&.closed {
&.-closed {
transform: translateX(100%);
box-shadow: none;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment