af-mobile-client-vue3 1.4.95 → 1.4.97

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.4.95",
4
+ "version": "1.4.97",
5
5
  "packageManager": "pnpm@10.13.1",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
package/src/App.vue CHANGED
@@ -108,8 +108,8 @@ input[type='password']::-ms-clear {
108
108
  .app-container {
109
109
  display: flex;
110
110
  flex-direction: column;
111
- height: 100vh; /* 使用 vh 确保在移动端浏览器中也能撑满 */
112
- height: 100dvh; /* 使用动态视口高度,处理移动端工具栏遮挡 */
111
+ /*noinspection CssUnresolvedCustomProperty*/
112
+ height: calc(100vh - var(--system-header-height, 0px)); /* 使用 vh 确保在移动端浏览器中也能撑满 */
113
113
  width: 100%;
114
114
  }
115
115