fix(input): 修复计划名称输入框文字被遮挡问题

- plan-edit 的 input 增加显式 height/line-height/box-sizing,避免中文被底部截断
- feedback 的联系方式 input 同步增加高度与行高,防止同类裁剪
This commit is contained in:
2026-07-22 23:36:52 +08:00
parent d74aae02b0
commit 60ba0625b5
2 changed files with 6 additions and 2 deletions

View File

@@ -59,6 +59,9 @@
font-size: 28rpx;
color: var(--text);
padding: 8rpx 0;
height: 56rpx;
line-height: 40rpx;
box-sizing: border-box;
}
.ph {
color: var(--text-3);

View File

@@ -17,9 +17,10 @@
.field__input, .field__area {
background: var(--surface); border: 1rpx solid var(--line);
border-radius: var(--radius-sm); padding: 24rpx; color: var(--text);
font-size: 30rpx; width: 100%;
font-size: 30rpx; width: 100%; box-sizing: border-box;
}
.field__area { min-height: 140rpx; }
.field__input { height: 88rpx; line-height: 40rpx; }
.field__area { min-height: 140rpx; line-height: 1.5; }
.ph { color: var(--text-3); }
.emoji-row { white-space: nowrap; }