Skip to content

Instantly share code, notes, and snippets.

@makingthingswork
Created August 21, 2019 13:38
Show Gist options
  • Save makingthingswork/e29f65c297f88aba3c74d1b68b4b60a1 to your computer and use it in GitHub Desktop.
Save makingthingswork/e29f65c297f88aba3c74d1b68b4b60a1 to your computer and use it in GitHub Desktop.
Size shortcut mixin
//One value will create square as $height is set to $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