Skip to content

Commit 13e74e9

Browse files
committed
fix: 투명도 조절
1 parent 8db00af commit 13e74e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/common/components/InAppNotification

src/common/components/InAppNotification/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const InAppNotification = ({ isOpen, nickname, profileImage, content, chatRoomId
2222
navigate(`/chat/${chatRoomId}`);
2323
}}
2424
initial={{ opacity: 0, translateX: '-50%' }}
25-
animate={isOpen ? { opacity: 1, translateX: '-50%', translateY: '50%' } : { opacity: 0, translateX: '-50%' }}
25+
animate={isOpen ? { opacity: 0.84, translateX: '-50%', translateY: '50%' } : { opacity: 0, translateX: '-50%' }}
2626
>
2727
<UserProfileImage nickname={nickname ?? ''} src={getImageUrl(profileImage ?? '')} />
2828
<div className={s.Content}>

0 commit comments

Comments
 (0)