summaryrefslogtreecommitdiff
path: root/vendor/bootstrap-3.2.0/mixins/_size.scss
blob: abbe2463ce8d7c315f8a2368f9301603315a35db (plain)
1
2
3
4
5
6
7
8
9
10
// Sizing shortcuts

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

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