fix(kiosko): height calc(100vh/0.80) compensa zoom para llenar viewport
This commit is contained in:
@@ -79,9 +79,6 @@ unset($p);
|
|||||||
|
|
||||||
/* ── Reset fullscreen ── */
|
/* ── Reset fullscreen ── */
|
||||||
*, *::before, *::after { box-sizing: border-box; }
|
*, *::before, *::after { box-sizing: border-box; }
|
||||||
html {
|
|
||||||
zoom: 0.80;
|
|
||||||
}
|
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0; padding: 0;
|
margin: 0; padding: 0;
|
||||||
height: 100%; width: 100%;
|
height: 100%; width: 100%;
|
||||||
@@ -97,9 +94,10 @@ unset($p);
|
|||||||
.kiosko-wrap {
|
.kiosko-wrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100vh;
|
height: calc(100vh / 0.80); /* ponytail: compensa el zoom:0.80 → visualmente 100vh */
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
zoom: 0.80;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ── Header con logo ── */
|
/* ── Header con logo ── */
|
||||||
|
|||||||
Reference in New Issue
Block a user