Files @ 32c2469b99f4
Branch filter:

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

Christopher Neugebauer
Vendors bootstrap-sass :(
// Sizing shortcuts

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

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