feat(FN-002): complete Step 2 — React Frontend App Skeleton

This commit is contained in:
Fusion
2026-05-14 01:23:01 +02:00
parent d74f77fd33
commit 79203d2f0f
16 changed files with 3175 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
:root {
--bg: #0f172a;
--fg: #e2e8f0;
--accent: #38bdf8;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
line-height: 1.5;
color-scheme: dark;
}
body {
margin: 0;
background: var(--bg);
color: var(--fg);
}
#root {
min-height: 100dvh;
display: flex;
flex-direction: column;
}