Major new version #2

Merged
LeoVasanko merged 86 commits from vol002 into main 2025-08-26 05:58:24 +01:00
Showing only changes of commit 7ca5b70c1e - Show all commits

View File

@ -11,13 +11,20 @@
/* Layout & typography */ /* Layout & typography */
* { box-sizing: border-box } * { box-sizing: border-box }
html, body { height: 100%; }
body { body {
margin: 0; margin: 0;
font: 500 14px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial; font: 500 14px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
background: var(--bg); background: var(--bg);
color: var(--ink); color: var(--ink);
/* Prevent body scrolling / unwanted scrollbars due to mobile browser UI chrome affecting vh */
overflow: hidden;
} }
/* Ensure root app container doesn't introduce its own scrollbars */
#app { height: 100%; width: 100%; overflow: hidden; }
header { header {
display: flex; display: flex;
align-items: baseline; align-items: baseline;