Skip to content

Instantly share code, notes, and snippets.

@8lane
Created January 12, 2016 12:06
Show Gist options
  • Save 8lane/041909931d910af8f366 to your computer and use it in GitHub Desktop.
Save 8lane/041909931d910af8f366 to your computer and use it in GitHub Desktop.
@mixin stretch($offset-top:0, $offset-right:0, $offset-bottom:0, $offset-left:0) {
position: absolute;
@if $offset-top { top: $offset-top; }
@if $offset-bottom { bottom: $offset-bottom; }
@if $offset-left { left: $offset-left; }
@if $offset-right { right: $offset-right; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment