Created
January 12, 2016 12:06
-
-
Save 8lane/041909931d910af8f366 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 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