Skip to content

Instantly share code, notes, and snippets.

@bcinarli
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcinarli/cef166ec6b71922f4d12 to your computer and use it in GitHub Desktop.
Save bcinarli/cef166ec6b71922f4d12 to your computer and use it in GitHub Desktop.
Square or desired width-height for an element
/* @author Bilal Cinarli */
/** -------------------------------------------
Size Related Mixins
------------------------------------------- **/
/**
* Square or desired width-height for an element
*/
@mixin dims($width, $height: null) {
width: $width;
@if $height == null {
height: $width;
}
@else {
height: $height;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment