yueli 66e0728957 fix(stocktake): 欢迎页补足上下安全边距,显式压过 el-card 的 overflow:hidden
b7cdd5e 的 min-height:0 基础上补两处:

1. 顶部安全边距缺失:内容超高时 .idle-content 的 margin:auto 会塌缩为 0,
   文字直接贴着屏幕顶端。改用**容器自身的 padding: 40px 0** —— padding
   不参与 auto 塌缩,滚到顶/底都稳定保留 40px 呼吸空间。

2. 显式声明两轴 overflow:Element Plus 的 .el-card 默认 `overflow: hidden`
   (实测其 dist/index.css 确有该声明)。原先只写 overflow-y: auto,
   虽然 scoped 选择器(.idle-card[data-v-x],特异性 0,2,0)能压过
   .el-card(0,1,0),但意图不够显式。改为 `overflow: hidden auto` 一次写清
   「横向裁掉、纵向可滚」。

实测 style 块编译通过(12799 字符),min-height:0 / padding:40px 0 /
overflow:hidden auto / margin:auto 均已进入产物。
2026-09-14 11:05:12 +08:00
2026-04-28 16:07:11 +08:00
2026-04-28 16:07:11 +08:00
2026-04-28 16:07:11 +08:00
Description
No description provided
88 MiB
Languages
Python 70.2%
CSS 14.9%
Vue 7.6%
HTML 4.2%
TypeScript 3.1%