Skip to content
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1250 from atma/bourbon-warnings
Browse files Browse the repository at this point in the history
Fixed #1249 by overwriting the box-sizing mixin to prevent the warnings
  • Loading branch information
atma committed Jun 3, 2015
2 parents 24c5af7 + d388791 commit b48ccf3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/shared/styles/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,15 @@
text-overflow: ellipsis;
white-space: nowrap;
}


// >> Box sizing
// ------------------------------------------------------

// The box-sizing mixin is deprecated by Bourbon library and will be removed in
// the next major version release. We are still going to support older browsers
// so to prevent Bourbon warnings the mixing is overriding here but without the
// warn.
@mixin box-sizing($box) {
@include prefixer(box-sizing, $box, webkit moz spec);
}

0 comments on commit b48ccf3

Please sign in to comment.