mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/dsz-examaware-mobile
synced 2025-04-29 08:16:41 +00:00
26 lines
589 B
HTML
26 lines
589 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>DSZ ExamAware Mobile</title>
|
|
<style>
|
|
å
|
|
/* 隐藏滚动条 */
|
|
body {
|
|
overflow: hidden;
|
|
}
|
|
/* 适用于所有滚动容器 */
|
|
.no-scrollbar {
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" class="no-scrollbar"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|