This commit is contained in:
2026-04-21 12:30:44 +09:00
commit 6ae64d2a13
15 changed files with 3292 additions and 0 deletions

22
src/style.css Normal file
View File

@@ -0,0 +1,22 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: "Inter", "Pretendard", ui-sans-serif, system-ui, sans-serif;
color: #111111;
background: #f3f0ea;
}
body {
min-height: 100vh;
background:
radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 32%),
linear-gradient(180deg, #f6f2ea 0%, #efe8de 100%);
}
button {
@apply outline-none;
}
}