@@ -98,10 +98,10 @@ export default function CardDetailPage({
9898 < >
9999 { /* 모달 고정 div */ }
100100 < div
101- className = "fixed inset-0 bg-black/30 z-50
101+ className = "fixed inset-0 bg-black/35 z-50
102102 flex items-center justify-center px-4 sm:px-6"
103103 >
104- { /* 모달 컨테이너 */ }
104+ { /* 모달창 */ }
105105 < div
106106 className = "relative flex flex-col
107107 overflow-y-auto
@@ -115,7 +115,7 @@ export default function CardDetailPage({
115115 { /* 헤더 */ }
116116 < div className = "flex justify-between sm:mb-4 mb-2" >
117117 { /* 카드 제목 */ }
118- < h2 className = "text-black3 font-bold sm:text-[24px ] text-[20px ]" >
118+ < h2 className = "text-black3 font-bold sm:text-[20px ] text-[16px ]" >
119119 { cardData . title }
120120 </ h2 >
121121 { /* 버튼 컨테이너 */ }
@@ -133,16 +133,18 @@ export default function CardDetailPage({
133133 >
134134 < MoreVertical className = "w-8 h-8 text-black3 cursor-pointer" />
135135 </ button >
136+ { /* 카드 편집 드롭다운 메뉴 */ }
136137 { showMenu && (
137138 < div
138139 className = "absolute right-0 top-9.5 p-2 z-40
139- sm:w-28 w-20
140+ flex flex-col items-center justify-center sm:gap-[6px] gap-[11px]
141+ sm:w-28 w-20 sm:h-24
140142 bg-white border border-[#D9D9D9] rounded-lg"
141143 >
142144 < button
143- className = "w-full rounded-sm
145+ className = "w-full h-full rounded-sm
144146 font-normal sm:text-[14px] text-[12px] text-black3
145- hover:bg-[#F1EFFD ] hover:text-[#5534DA ]
147+ hover:bg-[var(--color-violet8) ] hover:text-[var(--primary) ]
146148 cursor-pointer"
147149 type = "button"
148150 onClick = { ( ) => {
@@ -153,9 +155,9 @@ export default function CardDetailPage({
153155 수정하기
154156 </ button >
155157 < button
156- className = "w-full rounded-sm
158+ className = "w-full h-full rounded-sm
157159 font-normal sm:text-[14px] text-[12px] text-black3
158- hover:bg-[#F1EFFD ] hover:text-[#5534DA ]
160+ hover:bg-[var(--color-violet8) ] hover:text-[var(--primary) ]
159161 cursor-pointer"
160162 type = "button"
161163 onClick = { ( ) => deleteCardMutate ( ) }
@@ -189,7 +191,6 @@ export default function CardDetailPage({
189191 </ p >
190192 < CardInput
191193 hasButton
192- small
193194 value = { commentText }
194195 onTextChange = { setCommentText }
195196 onButtonClick = { handleCommentSubmit }
0 commit comments