Skip to content

Commit

Permalink
fix: ApplicationNavbar가 올바르게 보이지 않는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
jiu authored and jiu committed Feb 28, 2025
1 parent 1bd72f7 commit 8ea2e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/application/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const ApplicationNavbar = ({
<nav className={cn("pl-12 w-full h-full", className)}>
{applicationNavbar.map((navItem, index) => (
<button
className={"text-left p-4 relative"}
className={"text-left p-4 relative w-full"}
onClick={() => onNavbarClick(navItem.id)}
key={navItem.id}
>
Expand Down

0 comments on commit 8ea2e35

Please sign in to comment.