Scaffolding baseline

This commit is contained in:
2026-07-16 20:47:33 +02:00
parent e9cbc56903
commit 38b4e8fd43
32 changed files with 3114 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
:root {
color: #12263a;
background:
radial-gradient(circle at top left, #d7e7f2 0%, transparent 45%),
linear-gradient(180deg, #f4f8fb 0%, #e8eef3 100%);
font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
}
#root {
min-height: 100vh;
}