Files @ 0160b2314003
Branch filter:

Location: CopyleftConf/copyleftconf-website/static/bootstrap/stylesheets/bootstrap/mixins/_size.scss

Joshua Simmons
refine copy, look at quotes, dashes, capitalization etc
// Sizing shortcuts

@mixin size($width, $height) {
  width: $width;
  height: $height;
}

@mixin square($size) {
  @include size($size, $size);
}