File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ export default function MyDashboardPage() {
146146 { totalPages > 1 && (
147147 < div className = "justify-end flex items-center w-full max-w-[1035px]" >
148148 < span className = "font-14r text-black3 pr-[16px]" >
149- { `${ currentPage } 페이지 중 ${ totalPages } ` }
149+ { `${ totalPages } 페이지 중 ${ currentPage } ` }
150150 </ span >
151151 < PaginationButton
152152 direction = "left"
@@ -186,13 +186,15 @@ export default function MyDashboardPage() {
186186 onClose = { ( ) => setIsDeleteModalOpen ( false ) }
187187 className = "flex items-center justify-center text-center"
188188 >
189- < p className = "text-black3 font-16m" >
190- { selectedTitle }
191- < br />
192- { selectedCreatedByMe
193- ? "대시보드를 삭제하시겠습니까?"
194- : "대시보드에서 나가시겠습니까?" }
195- </ p >
189+ < div className = "flex flex-col items-center gap-1 text-center" >
190+ < div className = "text-[var(--primary)] font-16m" > { selectedTitle } </ div >
191+
192+ < div className = "text-black3 font-16m" >
193+ { selectedCreatedByMe
194+ ? "대시보드를 삭제하시겠습니까?"
195+ : "대시보드에서 나가시겠습니까?" }
196+ </ div >
197+ </ div >
196198 < div className = "flex items-center justify-center gap-2" >
197199 < CustomBtn
198200 onClick = {
You can’t perform that action at this time.
0 commit comments