Skip to content

Commit

Permalink
[feat#58] 왼쪽 네비게이션에 아이콘과 글자 간격 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
G-hoon committed Sep 26, 2024
1 parent 7c40cf4 commit c7e33ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SideNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function SideNav(): React.ReactElement {
return (
<li key={label} className={`mb-1 rounded-r-md ${isActive ? "bg-gray-700" : "hover:bg-gray-700"}`}>
<Link to={link} className={`nav-item flex w-full items-center p-3 ${isActive ? "active" : ""}`}>
<Icon className="ml-3 mr-2 h-5 w-5" />
<Icon className="ml-3 mr-3 h-5 w-5" />
<span className={isActive ? "font-bold" : ""}>{label}</span>
</Link>
</li>
Expand Down

0 comments on commit c7e33ec

Please sign in to comment.