Created
January 27, 2017 20:46
-
-
Save zuDevonRW/fa2c67a22b403aa3b42b7216fb02db82 to your computer and use it in GitHub Desktop.
pe-calc 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
@mixin pe-calc($property, $formula, $fallback) { | |
#{$property}: $fallback; | |
#{$property}: calc(#{$formula}); | |
} | |
// usage | |
@include pe-calc(width, '100% - 100px - 18px', 70%); | |
// generates | |
width: 70%; | |
width: calc(100% - 100px - 18px); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment