Initial coomit for AAI-UI(sparky-fe)
[aai/sparky-fe.git] / resources / scss / bootstrap / mixins / _size.scss
1 // Sizing shortcuts
2
3 @mixin size($width, $height) {
4   width: $width;
5   height: $height;
6 }
7
8 @mixin square($size) {
9   @include size($size, $size);
10 }