Skip to content

Commit cee2266

Browse files
authored
Merge pull request #50 from seoinah/main
add hamburger submenu cursor point
2 parents 38a6b51 + fb12ad0 commit cee2266

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const Header = ({ backgroundColor, textColor }: HeaderProps) => {
8080
{subItems?.map(({ label: subLabel, path }, index) => (
8181
<div
8282
key={subLabel}
83-
className={`flex h-[53px] w-[143px] items-center justify-center border-b border-[#ECECEC] hover:bg-[#908F8F1A] ${
83+
className={`flex h-[53px] w-[143px] items-center justify-center border-b border-[#ECECEC] hover:bg-[#908F8F1A] cursor-pointer ${
8484
index === subItems.length - 1 ? "border-b-0" : ""
8585
}`}
8686
onClick={() => goToMenu(path)}

0 commit comments

Comments
 (0)