2026-04-07 18:55:06 +09:00
|
|
|
@import "tailwindcss";
|
2026-04-13 14:20:32 +09:00
|
|
|
|
|
|
|
|
@theme {
|
|
|
|
|
--font-sans: "Maplestory", "Noto Sans KR", system-ui, -apple-system, sans-serif;
|
|
|
|
|
--font-maple: "Maplestory", "Noto Sans KR", sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-13 19:17:49 +09:00
|
|
|
html, body, #root {
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: #030712;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-13 14:20:32 +09:00
|
|
|
html {
|
|
|
|
|
font-family: "Maplestory", "Noto Sans KR", system-ui, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-feature-settings: "ss01", "ss02";
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
2026-04-13 15:20:46 +09:00
|
|
|
|
|
|
|
|
button:not(:disabled),
|
|
|
|
|
[role="button"]:not(:disabled),
|
|
|
|
|
a {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:disabled {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
2026-04-13 15:41:47 +09:00
|
|
|
|
|
|
|
|
/* number input 화살표 숨기기 */
|
|
|
|
|
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;
|
|
|
|
|
}
|
2026-04-13 19:17:49 +09:00
|
|
|
|
|
|
|
|
/* 커스텀 스크롤바 */
|
|
|
|
|
* {
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
|
|
|
|
|
}
|
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
}
|
|
|
|
|
*::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(255, 255, 255, 0.08);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
transition: background 0.2s;
|
|
|
|
|
}
|
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.18);
|
|
|
|
|
}
|
|
|
|
|
*::-webkit-scrollbar-corner {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|