Add custom css Class option for each component
T
Tom Goedhart
Agreed! Would make it easier to apply a certain style on multiple components instead of having to figure out what the component ID is and then edit the CSS
Anton
Each component is wrapped into <app-auto-element> tag which has unique attribute data-component-id="e59qr7mv". So you can create specific CSS selectors, for example:
[data-component-id="e59qr7mv"] .field__label { color: #ff0000; }
Does it answer your question?