File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
components/common/NotificationModal Expand file tree Collapse file tree 3 files changed +3
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff 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 ) : (
Original file line number Diff line number Diff line change 11import { useNavigate } from 'react-router-dom' ;
22import NotificationCard from './NotificationCard' ;
3- import close from '@/assets/icons/ic_close .svg' ;
3+ import close from '@/assets/icons/close .svg' ;
44
55interface NotificationItem {
66 createdAt : string ; // 생성 일시 (ISO 8601 문자열)
@@ -33,7 +33,7 @@ interface NotificationModalProps {
3333export 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" >
You can’t perform that action at this time.
0 commit comments