I am currently attempting to apply specific styles to all items in a list except for the first child. While I believe I have correctly set up the SASS, the style is not being applied as expected.
HTML
<div class="list">
<div *ngFor="let item of data; index as i; first as isFirst; last as isLast" class="list-item">
<input class="radio" name="radio" type="radio" />
<label for="radio1">Button</label>
</div>
</div>
SASS
.list label:not(:nth-of-type(1))::before{
background-color:blue;
}