【修复】修复商品里面参数栏因为字数换行,未自适应高度,导致内容错乱的问题。

This commit is contained in:
jianweie code
2023-11-18 21:02:45 +08:00
parent 33bd32870e
commit d2eb31cc6f
2 changed files with 6 additions and 6 deletions

View File

@@ -683,10 +683,10 @@ u-icon { line-height: 0; }
/*商品参数*/
.goods-param-box { border: 0.5px solid #c3c3c3; border-radius: 6px; margin-top: 12rpx; }
.goods-param-line { border-bottom: 0.5px solid #c3c3c3; display: flex; height: 34px; line-height: 34px; }
.goods-param-line { border-bottom: 0.5px solid #c3c3c3; display: flex; min-height: 34px; line-height: 34px; }
.goods-param-line:last-child { border-bottom: 0; }
.goods-param-line .name { background: #f3f3f3; border-right: 0.5px solid #c3c3c3; color: #616161; font-size: 12px; height: 34px; line-height: 34px; text-align: center; width: 95px; }
.goods-param-line .value { color: #2f2f2f; font-size: 12px; padding-left: 12px; width: 215px; }
.goods-param-line .name { background: #f3f3f3; border-right: 0.5px solid #c3c3c3; color: #616161; font-size: 12px; min-height: 34px; line-height: 34px; text-align: center; width: 95px; }
.goods-param-line .value { color: #2f2f2f; font-size: 12px; padding-left: 12px; width: calc(100% - 100px); }
/*代理价格表格*/

View File

@@ -683,10 +683,10 @@ u-icon { line-height: 0; }
/*商品参数*/
.goods-param-box { border: 0.5px solid #c3c3c3; border-radius: 6px; margin-top: 12rpx; }
.goods-param-line { border-bottom: 0.5px solid #c3c3c3; display: flex; height: 34px; line-height: 34px; }
.goods-param-line { border-bottom: 0.5px solid #c3c3c3; display: flex; min-height: 34px; line-height: 34px; }
.goods-param-line:last-child { border-bottom: 0; }
.goods-param-line .name { background: #f3f3f3; border-right: 0.5px solid #c3c3c3; color: #616161; font-size: 12px; height: 34px; line-height: 34px; text-align: center; width: 95px; }
.goods-param-line .value { color: #2f2f2f; font-size: 12px; padding-left: 12px; width: 215px; }
.goods-param-line .name { background: #f3f3f3; border-right: 0.5px solid #c3c3c3; color: #616161; font-size: 12px; min-height: 34px; line-height: 34px; text-align: center; width: 95px; }
.goods-param-line .value { color: #2f2f2f; font-size: 12px; padding-left: 12px; width: calc(100% - 100px); }
/*代理价格表格*/