Created
July 23, 2014 14:18
-
-
Save imrexhuang/6b1747868d54f78c3235 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.10) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$defined-bs-type: border-box; | |
$defined-bs-type: sausages !default; | |
@mixin bs($bs-type: $defined-bs-type) { | |
-webkit-box-sizing: $bs-type; | |
-moz-box-sizing: $bs-type; | |
box-sizing: $bs-type; | |
} | |
*{ | |
@include bs; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment