engelsystem/vendor/bootstrap-3.2.0/mixins/_size.scss

11 lines
147 B
SCSS
Raw Normal View History

2014-08-22 22:34:13 +02:00
// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}