summaryrefslogtreecommitdiff
path: root/scss/tests/files/kronuz/include/_mixin-varargs.scss
blob: 9fd3e06196a83ee0a2430cb2232d05a93f2f6b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@mixin _inner(...) {
	$width: null !default;
	$height: null !default;

	color: $color;
	background: $background;
	border: $border;
	@if $width {
		width: $width;
	}
	@if $height {
		width: $height;
	}
}

@mixin varargs(...) {
	$color: green;
	$background: red !default;
	@include _inner(...);
}