优化跨平台打包问题

This commit is contained in:
mingyuansi
2026-06-10 10:30:43 +08:00
parent 25d73f5443
commit 0e5fcfbb15
7 changed files with 803 additions and 8 deletions

View File

@@ -4,10 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>剧情编辑器 — 交互式电影游戏</title>
<style>
html, body { width: 100%; height: 100%; margin: 0; overflow: hidden; background: #0a0a16; }
#editor-app { width: 100%; height: 100%; }
</style>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="editor-app"></div>

12
editor/style.css Normal file
View File

@@ -0,0 +1,12 @@
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
background: #0a0a16;
}
#editor-app {
width: 100%;
height: 100%;
}