Skip to content

Commit

Permalink
๐Ÿ›fix: ์•Œ๋žŒ ๋ชจ๋‹ฌ zindex ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
heejung0413 committed Jul 17, 2024
1 parent 271c06a commit 6bdf89e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/components/alarm/Alarm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ const Alarm = () => {
toast.error('error');
}
};
console.log(todayNotification, otherNotification);
console.log(user);

useEffect(() => {
fetchNotification();
Expand Down Expand Up @@ -120,7 +118,7 @@ const Alarm = () => {
</S.IconStyle>
</PopoverTrigger>
<Portal>
<PopoverContent minW={{ base: '200', md: '500' }} zIndex={999}>
<PopoverContent minW={{ base: '200', md: '500' }}>
<PopoverArrow />
<PopoverHeader>
<BellFill style={{ fontSize: '30px' }} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/parts/MainNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const MainNavBar = () => {
<div
style={{
backgroundColor: 'white',
zIndex: 999,
zIndex: 3,
borderBottom: '1px solid rgba(184, 184, 184, 0.5)',
position: 'fixed',
left: 0,
Expand Down

0 comments on commit 6bdf89e

Please sign in to comment.