Skip to content

Commit

Permalink
Fix added: Remove mobile menu from DOM when button hasn't toggled it …
Browse files Browse the repository at this point in the history
…on/visble
  • Loading branch information
Ifycode committed Mar 28, 2024
1 parent 767b4ab commit 3ef8c7d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<!-- Smaller screens only -->
<div class="menu" *ngIf="!isDesktop" [ngClass]="{ 'menu--open': isBurgerMenuOpen }">
<div
class="menu"
*ngIf="!isDesktop && isBurgerMenuOpen"
[ngClass]="{ 'menu--open': isBurgerMenuOpen }"
>
<app-deployment-details></app-deployment-details>
<app-menu-list-non-links></app-menu-list-non-links>
<app-share-and-donate></app-share-and-donate>
Expand Down

0 comments on commit 3ef8c7d

Please sign in to comment.