Backup of db before drupal security update
[yaffs-website] / vendor / twbs / bootstrap-sass / assets / stylesheets / 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 }