Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created February 3, 2014 08:52
Show Gist options
  • Save robertmagnusson/8780703 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8780703 to your computer and use it in GitHub Desktop.
Mixin to set height and width.
@mixin size($width, $height: $width) {
width: $width;
height: $height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment