35 lines
625 B
CSS
35 lines
625 B
CSS
/* CSS 리셋 및 기본 스타일 */
|
|
@layer base {
|
|
body {
|
|
@apply min-w-[320px] bg-black;
|
|
word-break: break-word;
|
|
word-wrap: break-word;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
body.scroll-lock {
|
|
@apply overflow-hidden;
|
|
}
|
|
|
|
button,
|
|
a {
|
|
@apply outline-none;
|
|
}
|
|
|
|
img {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
/* Remove number input spinner */
|
|
input[type='number']::-webkit-inner-spin-button,
|
|
input[type='number']::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
input[type='number'] {
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
}
|
|
}
|