Created
October 23, 2015 21:05
-
-
Save df2k2/56c7484d6ad0ae8dda3f 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.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$sizeValue: 1%; | |
.check-percent { | |
@if (unit($sizeValue) == '%') { font-size: $sizeValue; } | |
} | |
.check-null { | |
@if ($sizeValue) { content: 'not null'; } | |
} | |
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
.check-percent { | |
font-size: 1%; | |
} | |
.check-null { | |
content: 'not null'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment