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

@@ -1,21 +1,21 @@
/* CSS 리셋 및 기본 스타일 */
@layer base {
body {
background-color: #000;
@apply min-w-[320px] bg-black;
}
body.scroll-lock {
overflow: hidden;
@apply overflow-hidden;
}
button,
a {
outline: none;
@apply outline-none;
}
/* 라이트 테마 색상 */
[data-theme='light'] {
body {
background-color: #fff;
@apply bg-white;
}
}
}

View File

@@ -1,4 +1,5 @@
:root {
/* 다크 테마 색상 */
--foreground: #191919;
--foreground-10: #292929;