Skip to content

Commit 1c38342

Browse files
authored
Merge pull request #29 from codeit-6team/feat/notification-modal
🖼️ feat: 이미지 파일명 수정
2 parents c75d0eb + ff3a0fb commit 1c38342

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/common/NotificationModal/NotificationCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function NotificationCard({
3131
const formattedStatusClass =
3232
status === 'accepted' ? 'text-blue-20' : 'text-red-20';
3333
return (
34-
<div className="flex flex-col gap-4 md:w-328 py-16 px-12 bg-white border border-gray-20 rounded-5 ">
34+
<div className="flex flex-col gap-4 md:w-328 py-16 px-12 bg-white border border-gray-20 rounded-[5px] ">
3535
{status === 'accepted' ? (
3636
<div className="w-5 h-5 rounded-full bg-blue-20"></div>
3737
) : (

src/components/common/NotificationModal/NotificationModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useNavigate } from 'react-router-dom';
22
import NotificationCard from './NotificationCard';
3-
import close from '@/assets/icons/ic_close.svg';
3+
import close from '@/assets/icons/close.svg';
44

55
interface NotificationItem {
66
createdAt: string; // 생성 일시 (ISO 8601 문자열)
@@ -33,7 +33,7 @@ interface NotificationModalProps {
3333
export default function NotificationModal({ data, count }: NotificationModalProps) {
3434
const navigate = useNavigate();
3535
return (
36-
<div className="flex flex-col px-20 py-40 bg-red-10 gap-16 h-screen md:py-24 md:border-4 md:border-gray-30 md:rounded-10 md:shadow-custom md:h-420 md:w-368">
36+
<div className="flex flex-col px-20 py-40 bg-red-10 gap-16 h-screen md:py-24 md:border-4 md:border-gray-30 md:rounded-[10px] md:shadow-custom md:h-420 md:w-368">
3737
<div className="flex justify-between items-center">
3838
<h1 className="text-h3 font-bold">알림 {count}</h1>
3939
<button onClick={()=> navigate(-1)} className="md:hidden">

0 commit comments

Comments
 (0)