Files
inkopslista/gui/index.html
T

25 lines
707 B
HTML

<html>
<body>
<!-- canvas required by the Slint runtime -->
<canvas id="canvas"></canvas>
<script type="module">
// import the generated file.
import init from "./pkg/inkopslista.js";
init();
</script>
<style>
body {
/* same background color as the Slint app */
background: #1b1b1b;
/* make it seamless */
margin: 0;
}
#canvas {
/* Force Slint to occupy the entire viewport */
width: 100vw !important;
height: 100vh !important;
}
</style>
</body>
</html>