shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

_size.scss (157B)


      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 }