Files @ fdc2503fcfc3
Branch filter:

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

Christopher Neugebauer
Merge remote-tracking branch 'rd/all-python'
// Sizing shortcuts

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

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