Files
LeafWeb/WebCms/Content/bootstrap/mixins/_size.scss
T
poprhythm cf21f17bc1 Customize bootstrap with SASS
Update jquery validate for IE
Simplify scripting
Update home page logo
2016-12-13 09:40:40 -05:00

11 lines
147 B
SCSS

// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}