Skip to content

Instantly share code, notes, and snippets.

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