Skip to content

Commit 430b395

Browse files
committed
fix: make the burger menu accessible
1 parent c79795d commit 430b395

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/app/homepage/header/header.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<header>
2-
<div
2+
<button
33
class="icon-wrapper"
44
(click)="toggle.emit()"
55
[class.opened]="isSidebarOpened"
@@ -38,7 +38,7 @@
3838
/>
3939
</svg>
4040
</div>
41-
</div>
41+
</button>
4242
<ng-content></ng-content>
4343
<app-social-wrapper></app-social-wrapper>
4444
<div class="menu-wrapper">

src/app/homepage/header/header.component.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ header {
3030
display: inline-block;
3131
position: relative;
3232
z-index: 10000;
33+
border: none;
34+
background: transparent;
3335

3436
&:hover {
3537
cursor: pointer;

0 commit comments

Comments
 (0)