feat. alert, confirm 모달 추가

This commit is contained in:
clkim
2025-10-16 10:34:42 +09:00
parent fb8b418b52
commit d61f5aa875
31 changed files with 317 additions and 275 deletions

View File

@@ -0,0 +1,22 @@
/* Button Size Classes */
@layer components {
.modal-wrap {
@apply fixed inset-0 flex p-5 z-[500];
}
.modal-wrap.dimmed {
@apply bg-black/60;
}
.modal-area {
@apply relative w-full max-w-[312px] m-auto p-6 bg-white rounded-[20px];
}
.content-btns {
@apply flex gap-2 mt-6;
}
.content-text {
@apply text-center text-[15px] text-[#333333] leading-6 tracking-[-0.45px];
}
}