Skip to content

Commit

Permalink
Support for strictMath option within LESS
Browse files Browse the repository at this point in the history
The less option `strictMath` requires all mathematical expressions are wrapped in parenthesis.  This will currently fail under that option.

Adding this parenthesis around the expression fixes this
  • Loading branch information
oller committed Jan 28, 2016
1 parent 5ae98fa commit 1e61c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion less/flag-icon-base.less
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.flag-icon-background;
position: relative;
display: inline-block;
width: unit(4 / 3, em);
width: unit((4 / 3), em);
line-height: 1em;
&:before {
content: "\00a0";
Expand Down

0 comments on commit 1e61c49

Please sign in to comment.