fixing clients

new frontend
This commit is contained in:
stefan
2025-09-25 21:55:13 +02:00
parent 3aa4e3c412
commit 75f53dcd89
3 changed files with 14 additions and 10 deletions
+1
View File
@@ -24,6 +24,7 @@ kotlin {
} }
} }
js(IR) { js(IR) {
outputModuleName = "web-app"
browser { browser {
testTask { testTask {
enabled = false enabled = false
+7 -10
View File
@@ -2,17 +2,14 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Title</title> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<style> <title>Meldestelle</title>
html, body { <link type="text/css" rel="stylesheet" href="styles.css">
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Verhindert Scrollbalken durch die Canvas */
}
</style>
</head> </head>
<body> <body>
<script src="Meldestelle-clients-app.js"></script> <!--<div id="ComposeTarget"></div>-->
<!--<script src="skiko.js"></script>-->
<!--<script src="Meldestelle-client.js"></script>-->
<script src="web-app.js"></script>
</body> </body>
</html> </html>
@@ -0,0 +1,6 @@
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Verhindert Scrollbalken durch die Canvas */
}