mirror of
https://github.com/hulthe/inkopslista.git
synced 2026-08-03 23:11:28 +02:00
28 lines
829 B
HTML
28 lines
829 B
HTML
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
|
|
</head>
|
|
<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>
|