feat: set html and body to full height and hide overflow; remove min size from simulator canvas
This commit is contained in:
parent
2744b398e3
commit
6316d14c55
|
|
@ -4,6 +4,11 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||||
background-color: #1a1a1a;
|
background-color: #1a1a1a;
|
||||||
|
|
|
||||||
|
|
@ -168,9 +168,6 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
transform-origin: 0 0;
|
transform-origin: 0 0;
|
||||||
/* min size so content is reachable even when empty */
|
|
||||||
width: 4000px;
|
|
||||||
height: 3000px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ── Components area ─────────────────────────────── */
|
/* ── Components area ─────────────────────────────── */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue