Skip to content

Commit

Permalink
Fix x-trap values
Browse files Browse the repository at this point in the history
  • Loading branch information
anorthall committed Dec 13, 2023
1 parent 8adb13b commit 994f35d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</div>

<div class="notifications-dropdown" x-show="open" x-cloak x-transition.scale.20.origin.top.right
@click.outside="open = false" x-trap.noscroll="true">
@click.outside="open = false" x-trap.noscroll="open">
<h4 class="fs-6 notification-item">Notifications</h4>
{% for item in notifications.list %}
<div class="notification-item notification{% if item.read %} read{% endif %}">
Expand Down Expand Up @@ -62,7 +62,7 @@ <h4 class="fs-6 notification-item">Notifications</h4>
</a>

<div class="hamburger-menu-container" x-show="open" @click.outside="open = false"
x-cloak x-transition.scale.20.origin.top.right x-trap.noscroll="true">
x-cloak x-transition.scale.20.origin.top.right x-trap.noscroll="open">
<nav class="hamburger-menu left">
<span class="nav-item sidebar-header">Navigation</span>

Expand Down

0 comments on commit 994f35d

Please sign in to comment.