summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/extend-in-nested-block.scss
blob: d62ead937eeb33c3771e72b7afd99fe2df357ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
.test{
 .error {
  		border: 1px #f00;
  		background-color: #fdd;
	}

 .seriousError {
  		@extend .error;
  		border-width: 3px;
	}
}