mirror of
https://github.com/HuLaSpark/HuLa.git
synced 2026-09-21 12:43:20 +08:00
* refactor(common): ♻️ login data init * refactor(common): ♻️ login refactor * fix(common): 🐛 mobile set auto login after login * fix(common): 🐛 ios splash screen auto login * fix(common): 🐛 ios splash screen close * fix(mobile): 🐛 personal information display * refactor(global import): ♻️ refactoring global import to distinguish pc from mobile * fix(common): 🐛 fix mobile layout * fix(common): 🐛 set mobile safe area in app.vue * fix(common): 🐛 delete SafeAreaComponent * build(build): 📦 improve mobile and pc component import files * refactor(common): ♻️ remove mobile client * build(build): 📦 remove components*.d.ts * fix(common): 🐛 android safe area * fix(common): 🐛 android safe area * fix(mobile): 🐛 refine the message text for withdrawal, and add a mobile phone clipboard * fix(system): 🐛 fix storage logic causing logins to fail fix white screen issues on some ios pages due to top safe zone * feat(mobile): ✨ adapt mobile chat room input box * fix(mobile): 🐛 modify Android ports and some mobile styles --------- Co-authored-by: wanwanruwoxin <254693270@qq.com> Co-authored-by: 乾乾 <1046762075@qq.com> Co-authored-by: kazai <kazai_xiaohe@gmail.com>
53 lines
973 B
HTML
Vendored
53 lines
973 B
HTML
Vendored
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>HuLa</title>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
|
|
|
|
<!-- iconpark图标库 -->
|
|
<script async src="/icon.js"></script>
|
|
|
|
<!-- 🧩 加载页样式 -->
|
|
<style id="loading-css">
|
|
.rounded-14px {
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.size-50px {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.w-300px {
|
|
width: 300px;
|
|
}
|
|
|
|
.h-200px {
|
|
height: 200px;
|
|
}
|
|
|
|
.w-78px {
|
|
width: 78px;
|
|
}
|
|
|
|
.h-40px {
|
|
height: 40px;
|
|
}
|
|
|
|
.mb-140px {
|
|
margin-bottom: 140px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Vue 应用挂载点 -->
|
|
<div id="app"></div>
|
|
<!-- 🚀 Vue 应用入口 -->
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|