Created
October 5, 2020 05:21
-
-
Save sommereder/3d7bc3d363b59eeebb68141eda5cc401 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 position( | |
$position: static, | |
$top: auto, | |
$right: auto, | |
$bottom: auto, | |
$left: auto, | |
$z-index: auto, | |
) { | |
position: $position; | |
top: $top; | |
right: $right; | |
bottom: $bottom; | |
left: $left; | |
z-index: $z-index; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment