/home/blackyak/www/wordpress/wp-content/themes/travivu/assets/sass/mixins/mixins/_size.scss
// Sizing shortcuts

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

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