aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-02-04 21:13:02 +0800
committerMistivia <i@mistivia.com>2025-02-04 21:13:02 +0800
commit781917675a1f7a81d61dca8e5134fb4867750685 (patch)
tree6156b81e42d46fddc8ad2e518cf070c0891224bc /index.html
init
Diffstat (limited to 'index.html')
-rw-r--r--index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..ad4df1c
--- /dev/null
+++ b/index.html
@@ -0,0 +1,28 @@
+<!doctype html>
+<html lang="zh">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>游戏王卡组编辑器</title>
+ <style>
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+ body {
+ font-family: Arial, sans-serif;
+ height: 100vh;
+ }
+ .container {
+ display: flex;
+ height: 100%;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="app" class="container"></div>
+ <script type="module" src="/src/main.ts"></script>
+ </body>
+</html>
+