mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
Fixes #523: Add some style
This commit is contained in:
@ -9,6 +9,7 @@ form {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
height: calc(var(--vh, 1vh) * 100);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
17
pwnagotchi/ui/web/static/js/viewportHeight.js
Normal file
17
pwnagotchi/ui/web/static/js/viewportHeight.js
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
/* https://css-tricks.com/the-trick-to-viewport-units-on-mobile/*/
|
||||||
|
|
||||||
|
var lastViewportHeight;
|
||||||
|
|
||||||
|
function updateViewportSize() {
|
||||||
|
// First we get the viewport height and we multiple it by 1% to get a value for a vh unit
|
||||||
|
var vh = window.innerHeight * 0.01;
|
||||||
|
if (!lastViewportHeight || lastViewportHeight !== vh) {
|
||||||
|
// Then we set the value in the --vh custom property to the root of the document
|
||||||
|
document.documentElement.style.setProperty("--vh", vh + "px");
|
||||||
|
lastViewportHeight = vh;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
|
updateViewportSize();
|
||||||
|
});
|
@ -24,6 +24,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript" src="/js/refresh.js"></script>
|
||||||
<script type="text/javascript" src="/js/refresh.js"></script>
|
<script type="text/javascript" src="/js/refresh.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
Reference in New Issue
Block a user