small organization, different port

This commit is contained in:
metacryst
2025-12-29 03:03:49 -06:00
parent 71984ddd67
commit a21e651484
5 changed files with 10 additions and 12 deletions

30
app.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Parchment</title>
<link rel="icon" href="Quill.png">
<style>
body {
margin: 0;
overflow: hidden;
background-color: #6A2C1C;
}
.draggable {
-webkit-app-region: drag;
height: 40px;
position: fixed;
top: 0;
left: 0;
width: 100vw;
z-index: 999;
}
</style>
</head>
<body>
<div class="draggable"></div>
<webview src="http://localhost:10001" style="width:100vw; height:100vh;"></webview>
</body>
</html>