Skip to content

Instantly share code, notes, and snippets.

@czajkovsky
Created August 5, 2014 06:13
Show Gist options
  • Save czajkovsky/3714e28ebfe8f8635119 to your computer and use it in GitHub Desktop.
Save czajkovsky/3714e28ebfe8f8635119 to your computer and use it in GitHub Desktop.
@mixin size($args) {
@if length($args) == 2 {
width: nth($args, 1);
height: nth($args, 2);
}
@else {
width: $args;
height: $args;
}
}
// usage
.foo {
@include size(2rem 3rem);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment