Единственный альтернативный способ - использовать ng :: deep . Но помните, эта функция скоро станет устаревшей !
Ниже приведен пример ее использования.
app.component.html
:
<my-component>
<another-component>
<div class="buton"></div>
</another-component>
</my-component>
my-component.component.scss
:
.someclasse ::ng-deep {
.button {
background-color: white;
}
}