Skip to content

Instantly share code, notes, and snippets.

@sommereder
Created October 5, 2020 05:21
Show Gist options
  • Save sommereder/3d7bc3d363b59eeebb68141eda5cc401 to your computer and use it in GitHub Desktop.
Save sommereder/3d7bc3d363b59eeebb68141eda5cc401 to your computer and use it in GitHub Desktop.
@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