Browse Source

fix: 修复紧凑模式下表单项 margin 计算错误 (#26069)

close #25989
pull/26079/head
zefeng 4 years ago
committed by GitHub
parent
commit
73ce401ae8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      components/form/style/index.less

4
components/form/style/index.less

@ -49,8 +49,8 @@
}
.explainAndExtraDistance(@num) when (@num < 0) {
margin-top: floor(@num);
margin-bottom: floor(@num);
margin-top: ceil(@num);
margin-bottom: ceil(@num);
}
// ================================================================

Loading…
Cancel
Save