taiga-front/app/styles/dependencies/mixins/svg.scss

10 lines
190 B
SCSS

@mixin svg-size($width: 1rem, $height: null) {
@if $height == null {
width: $width;
height: $width;
} @else {
width: $width;
height: $height;
}
}