Skip to content

Commit

Permalink
fix variable
Browse files Browse the repository at this point in the history
  • Loading branch information
yoyo837 committed Feb 17, 2020
1 parent 756641b commit 3626a04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/form/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
}
}

.explainAndExtraDistance(@num) when (@a>=0) {
.explainAndExtraDistance(@num) when (@num>=0) {
padding-top: floor(@num);
}
.explainAndExtraDistance(@num) when (@a<0) {
.explainAndExtraDistance(@num) when (@num<0) {
margin-top: floor(@num);
}

Expand Down

0 comments on commit 3626a04

Please sign in to comment.