Skip to content

Commit

Permalink
style: GNB컴포너트 스타일링 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
HoberMin committed Jun 22, 2024
1 parent b57bdb7 commit 21e4ce8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/GNB/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const GNB = () => {
];

return (
<div className='sticky bottom-0 w-full bg-[#212529] px-4'>
<div className='sticky bottom-0 w-full bg-background px-4'>
<nav>
<ul className='flex justify-between'>
{navItems.map(({ href, icon, name }, index) => {
Expand All @@ -41,9 +41,7 @@ const GNB = () => {
<li key={`${index}-${name}`}>
<Link
href={href}
className={cn(
`mx-auto flex w-full items-end justify-center px-4 pt-1 text-center`,
)}
className='mx-auto flex w-full items-end justify-center px-4 pt-1 text-center'
>
<div
className={cn(
Expand Down

0 comments on commit 21e4ce8

Please sign in to comment.