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

.test2 {
	@extend .test1;
	background: red;
}