When customizing elements, I typically use the following approach:
app-csv-header-selection {
margin-left: 2rem;
}
This method has been effective so far. However, I am now looking to exclude the styling from the first element selected.
Is there a way to achieve this without involving a parent container?
One idea I have is shown in the pseudo example below:
app-csv-header-selection:not(:first) {
margin-left: 2rem;
}