let claude haiku 4.5 generate front page and login module (css crashed & login malfunctioning)

This commit is contained in:
2026-05-19 21:36:31 +08:00
parent 593e1cbaf0
commit ed0e1d0f69
14 changed files with 1879 additions and 118 deletions
+24 -17
View File
@@ -1,26 +1,33 @@
@import "tailwindcss";
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
--primary: #000;
--secondary: #fff;
--accent: #ff0066;
--muted: #8a8a8a;
--border: #e5e5e5;
}
@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;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
background: #fafafa;
color: var(--primary);
}
a {
color: inherit;
text-decoration: none;
}
button {
font-family: inherit;
border: none;
cursor: pointer;
}