mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
重构主题相关功能,移除不再使用的暗黑模式样式和配置 将主题颜色设置逻辑迁移到utils/theme模块 简化主题设置页面UI,移除预览区域 更新全局样式配置和页面路由类型定义
26 lines
817 B
HTML
26 lines
817 B
HTML
<!doctype html>
|
|
<html build-time="%BUILD_TIME%">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="shortcut icon" href="./public/favicon.png" type="image/x-icon" />
|
|
<script>
|
|
var coverSupport =
|
|
"CSS" in window &&
|
|
typeof CSS.supports === "function" &&
|
|
(CSS.supports("top: env(a)") || CSS.supports("top: constant(a)"));
|
|
document.write(
|
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
|
(coverSupport ? ", viewport-fit=cover" : "") +
|
|
'" />'
|
|
);
|
|
</script>
|
|
<title>FastApp</title>
|
|
<!--preload-links-->
|
|
<!--app-context-->
|
|
</head>
|
|
<body>
|
|
<div id="app"><!--app-html--></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|