Skip to content

Instantly share code, notes, and snippets.

@czajkovsky
Created August 5, 2014 06:17
Show Gist options
  • Save czajkovsky/305e1032902d2b44a865 to your computer and use it in GitHub Desktop.
Save czajkovsky/305e1032902d2b44a865 to your computer and use it in GitHub Desktop.
@mixin position($position, $args) {
@each $dir in top, left, bottom, right {
$i: index($args, $dir);
@if $i {
#{$dir}: nth($args, $i + 1);
}
}
position: $position;
}
@mixin absolute($args) {
@include position(absolute, $args);
}
@mixin relative($args) {
@include position(relative, $args);
}
@mixin fixed($args) {
@include position(fixed, $args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment