Skip to content

Commit

Permalink
bug fix box-sizing type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Black Mirror committed Feb 20, 2018
1 parent 50a4629 commit 1d3742e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/mixins/_box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $box-sizing-modes: concat((content-box, border-box), $css-default-modes);
}

@mixin box-sizing($bs) {
@if is-defined($dm) and is-box-sizing-mode($width) {
@if is-defined($bs) and is-box-sizing-mode($width) {
box-sizing: $bs;
}
@else {
Expand Down

0 comments on commit 1d3742e

Please sign in to comment.