You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri + Svelte</title>
<link rel="stylesheet" href="node_modules/7.css">
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
.window {
min-height: 100vh;
min-width: 100vw;
max-height: 100vh;
max-width: 100vw;
}
.window-body {
min-height: calc(100vh - 48px);
max-height: calc(100vh - 48px);
overflow: auto;
}
</style>
</head>
<body class="window glass active">
<div data-tauri-drag-region class="title-bar">
<div data-tauri-drag-region class="title-bar-text">Lindows Mive Wessenger</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div id="app" class="window-body has-space"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>