Skip to content

Commit

Permalink
Merge pull request #72 from eunji-0623/feature-jisung
Browse files Browse the repository at this point in the history
fix: 네비게이션바 보더 조정
  • Loading branch information
Byukchong authored Aug 1, 2024
2 parents ea77258 + 68603a3 commit c87b953
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Layout/NavigationBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function NavigationBar() {
}

return (
<div className="sticky top-0 flex h-[70px] justify-center items-center z-30 px-[24px] t:px-[24px] m:px-[24px] border-b bg-white dark:bg-var-dark1 border-var-gray3 dark:border-none border-solid">
<div className="sticky top-0 flex h-[70px] justify-center items-center z-30 px-[24px] t:px-[24px] m:px-[24px] border-b border-solid bg-white border-var-gray3 dark:bg-var-dark1 dark:border-var-dark1">
<div className="w-[1200px] flex justify-between items-center ">
<div className="flex items-center">
<Link href="/">
Expand All @@ -84,7 +84,7 @@ export default function NavigationBar() {
<Image src={notificationIcon} alt="알림 아이콘" />
{data?.totalCount !== undefined && data?.totalCount > 0 && (
<span className="absolute top-[-7px] right-[-7px] flex items-center justify-center bg-red-500 w-[15px] h-[15px] text-white text-[12px] rounded-full">
<p className="translate-y-[-4%] translate-x-[-10%]">
<p className="translate-y-[2%] translate-x-[-10%]">
{data.totalCount}
</p>
</span>
Expand Down

0 comments on commit c87b953

Please sign in to comment.