27 lines
365 B
CSS
27 lines
365 B
CSS
/* CSS 리셋 및 기본 스타일 */
|
|
@layer base {
|
|
body {
|
|
@apply min-w-[320px] bg-black;
|
|
}
|
|
body.scroll-lock {
|
|
@apply overflow-hidden;
|
|
}
|
|
|
|
button,
|
|
a {
|
|
@apply outline-none;
|
|
}
|
|
|
|
img {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
/* 라이트 테마 색상 */
|
|
[data-theme='light'] {
|
|
.main {
|
|
@apply bg-theme-foreground;
|
|
}
|
|
}
|
|
}
|