feat: set html and body to full height and hide overflow; remove min size from simulator canvas

pull/10/head
David Montero Crespo 2026-03-07 02:09:14 -03:00
parent 2744b398e3
commit 6316d14c55
2 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,11 @@
box-sizing: border-box;
}
html, body {
height: 100%;
overflow: hidden;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background-color: #1a1a1a;

View File

@ -168,9 +168,6 @@
top: 0;
left: 0;
transform-origin: 0 0;
/* min size so content is reachable even when empty */
width: 4000px;
height: 3000px;
}
/* ── Components area ─────────────────────────────── */