Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function NotificationCard({
const formattedStatusClass =
status === 'accepted' ? 'text-blue-20' : 'text-red-20';
return (
<div className="flex flex-col gap-4 md:w-328 py-16 px-12 bg-white border border-gray-20 rounded-5 ">
<div className="flex flex-col gap-4 md:w-328 py-16 px-12 bg-white border border-gray-20 rounded-[5px] ">
{status === 'accepted' ? (
<div className="w-5 h-5 rounded-full bg-blue-20"></div>
) : (
Expand Down
4 changes: 2 additions & 2 deletions src/components/common/NotificationModal/NotificationModal.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useNavigate } from 'react-router-dom';
import NotificationCard from './NotificationCard';
import close from '@/assets/icons/ic_close.svg';
import close from '@/assets/icons/close.svg';

interface NotificationItem {
createdAt: string; // 생성 μΌμ‹œ (ISO 8601 λ¬Έμžμ—΄)
Expand Down Expand Up @@ -33,7 +33,7 @@ interface NotificationModalProps {
export default function NotificationModal({ data, count }: NotificationModalProps) {
const navigate = useNavigate();
return (
<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">
<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">
<div className="flex justify-between items-center">
<h1 className="text-h3 font-bold">μ•Œλ¦Ό {count}개</h1>
<button onClick={()=> navigate(-1)} className="md:hidden">
Expand Down