Skip to content

Commit

Permalink
fix: alignment of navbar dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
skinmaker1345 committed Oct 26, 2024
1 parent 47a8ca2 commit 79a8238
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,16 +190,16 @@ const Navbar: React.FC<NavbarProps> = ({ token }) => {
href={`/users/${userCache.id}`}
className='block rounded-t px-4 py-2 hover:bg-gray-100 dark:hover:bg-discord-dark-hover'
>
<i className='fas fa-user' />
<i className='fas fa-user w-5' />
프로필
</Link>
</li>
<li>
<Link
href='/panel'
className='block px-4 py-2 hover:bg-gray-100 dark:hover:bg-discord-dark-hover'
className='block px-3 py-2 hover:bg-gray-100 dark:hover:bg-discord-dark-hover'
>
<i className='fas fa-cogs' />
<i className='fas fa-cogs mr-1 w-5' />
관리패널
</Link>
</li>
Expand All @@ -216,7 +216,8 @@ const Navbar: React.FC<NavbarProps> = ({ token }) => {
}}
className='block cursor-pointer rounded-b px-4 py-2 text-red-500 hover:bg-gray-100 dark:hover:bg-discord-dark-hover'
>
<i className='fas fa-sign-out-alt' /> 로그아웃
<i className='fas fa-sign-out-alt' />
로그아웃
</a>
</li>
</ul>
Expand Down

0 comments on commit 79a8238

Please sign in to comment.