summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/contains-in-if.scss
blob: 4bb7e7a6aefcdb498d35c25447b82ad0f343862b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@if (contains(a b c, b)) {
	.yes {
		color: green;
	}
} @else {
	.no {
		color: red;
	}
}
@if (contains(a b c, d)) {
	.yes {
		color: green;
	}
} @else {
	.no {
		color: red;
	}
}