I have an angular component, that generates inline style attributes in the resulting HTML.
Example :
<my-component></my-component>
The HTML of that component is:
<div id="my_component" class="class_1" style="width: 40px; height: 40px;"></div>
Is there a way to override the width/height of my_component from external CSS file? I tried many selectors, I'm always getting overridden by the inline style...
!important is working, but I would like to know if there is another way than use !important.