We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16be811 commit c01350fCopy full SHA for c01350f
src/components/MenuButton.tsx
@@ -53,7 +53,7 @@ export default function MenuButton() {
53
<EditNoteRoundedIcon fontSize="medium" />
54
</Link>
55
56
- <div
+ <button
57
className={twMerge(
58
'bg-primary-3 fixed bottom-[30px] z-30 flex h-13 w-13 content-center items-center justify-center rounded-full text-white transition-all duration-200 hover:scale-105 active:scale-90',
59
isOpen ? 'rotate-90' : 'rotate-0',
@@ -62,7 +62,7 @@ export default function MenuButton() {
62
aria-label="메뉴 열기"
63
>
64
<MenuRoundedIcon />
65
- </div>
+ </button>
66
</div>
67
</>
68
);
0 commit comments