Last active
September 29, 2018 11:49
-
-
Save AdamStuartClark/56708b0d4f6a5b828a1e85bdc39c156c to your computer and use it in GitHub Desktop.
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
@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