Created
July 3, 2015 07:07
-
-
Save daveredfern/4f4f48146ab7b9ffa636 to your computer and use it in GitHub Desktop.
Example of using Calc with SASS variables
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
$spacing = 1rem; | |
.column { | |
width: calc(20% - #{$spacing}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment