Last active
December 30, 2015 18:09
-
-
Save ryanburgess/7865456 to your computer and use it in GitHub Desktop.
Add box sizing to your CSS using the Box Model SASS mixin.
This file contains 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
// ----------------------------------------- | |
// Box Model | |
// ------------------------------------------- | |
@mixin box-sizing($box-model) { | |
-webkit-box-sizing: $box-model; | |
-moz-box-sizing: $box-model; | |
box-sizing: $box-model; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment