summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/extending-same-selector.scss
blob: fbfaed9b20fd29ff2299fa453a2645dad168786b (plain)
1
2
3
4
5
6
7
8
.test {
	color: blue;
}

.test {
	@extend .test;
	background: red;
}