File diff e33121c7dc54 → 32c2469b99f4
static/bootstrap/stylesheets/bootstrap/mixins/_size.scss
Show inline comments
 
new file 100644
 
// Sizing shortcuts
 

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

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