tupali/temas/magazine/sass/bootstrap/mixins/_size.scss

11 lines
147 B
SCSS
Raw Normal View History

2016-10-29 15:07:15 +00:00
// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}