assets/stylesheets/bootstrap/mixins/_size.scss
changeset 114 af15590802a4
equal deleted inserted replaced
113:d4ec02c51c91 114:af15590802a4
       
     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 }