Files
Parchment/server/index.html
metacryst 493f1c2e1f init
2025-11-13 15:30:11 -06:00

30 lines
609 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Downloads</title>
<link rel="icon" href="Quill.png">
<style>
body {
margin: 0;
overflow: hidden;
}
.draggable {
-webkit-app-region: drag;
height: 20px;
position: fixed;
top: 0;
left: 0;
width: 100vw;
z-index: 999;
}
</style>
</head>
<body>
<div class="draggable"></div>
<webview src="http://localhost:3020" style="width:100vw; height:100vh;"></webview>
</body>
</html>