Newer
Older
Old_Homepage / energy / sass / bootstrap / mixins / _size.scss
@zion zion on 12 Sep 2016 147 bytes template selection complete
// Sizing shortcuts

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

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