Created
November 24, 2015 04:31
-
-
Save sogko/ce29ce53f22e179e7079 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$viewportIncrement: 1px; | |
$small: 480px; | |
$postSmall: $small + $viewportIncrement; | |
.test { | |
width: $viewportIncrement; | |
} | |
.test2 { | |
width: $postSmall; | |
} |
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
.test { | |
width: 1px; | |
} | |
.test2 { | |
width: 481px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment