Is there a way to create a universal style in styles.scss that can be applied to all Component selectors (e.g. app-componentA, app-componentB ...)?
I understand that I could manually add the style to each selector, but I am concerned that it may be forgotten when new components are added in the future...
In essence, I want to avoid repetitive code.
Any suggestions?
EDIT: I'm seeking a "css-query" that can target all Angular components. Something like a wildcard approach:
styles.scss
.app* {
margin-left: 20px; // will apply to all DOM elements starting with app
}