Created
January 9, 2015 20:15
-
-
Save pablolobos/8a8a3e97f00328f62c99 to your computer and use it in GitHub Desktop.
scss_sass_if.scss
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 absolute-position($top, $right, $bottom, $left) | |
{ | |
position: absolute; | |
@if $top != '' { | |
top: $top; | |
} | |
@if $right != '' { | |
right: $right; | |
} | |
@if $bottom != '' { | |
bottom: $bottom; | |
} | |
@if $left != '' { | |
left: $left; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment