This commit is contained in:
pwy3282040@msecure.co
2025-12-27 00:17:46 +09:00
commit 87405e897e
34 changed files with 6264 additions and 0 deletions

37
src/app/globals.css Normal file
View File

@@ -0,0 +1,37 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
.w-md-editor {
border-radius: 0.75rem !important; /* 둥근 모서리 */
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
border-color: #e5e7eb !important;
}
.w-md-editor-toolbar {
border-radius: 0.75rem 0.75rem 0 0 !important;
background-color: #f9fafb !important;
}