Skip to content

Commit

Permalink
adding gh sign in
Browse files Browse the repository at this point in the history
  • Loading branch information
samifouad committed Apr 21, 2024
1 parent 09b253d commit 3c5deb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MenuIcons.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ isOpen.subscribe(open => {
})
// Add an event listener to the button
document.getElementById('drawerMenu').addEventListener('click', openMenu)
//document.getElementById('drawerMenu').addEventListener('click', openMenu)
//
// moved this functionality to svelte on:click fn below
</script>
Expand Down Expand Up @@ -74,7 +74,7 @@ document.getElementById('drawerMenu').addEventListener('click', openMenu)
</div>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div id="hamburgerMenu" on:click={ openMenu() } style="float: left; line-height: 50px; height: 50px; padding-top: 10px; padding-left: 10px;">
<div id="hamburgerMenu" on:click={ openMenu } style="float: left; line-height: 50px; height: 50px; padding-top: 10px; padding-left: 10px;">
<!-- svelte-ignore a11y-click-events-have-key-events -->
<svg class="ham hamRotate ham1 {$isOpen ? 'active' : ''}" viewBox="0 0 100 100" width="45" style="display: inline;">
<path
Expand Down

0 comments on commit 3c5deb4

Please sign in to comment.