You can use the special css instruction /deep/. See documentation
So if you have
app
sub-component
target-component
<div class="target-class">...</div>
You can put css (or less) in your applications:
/deep/ .target-class {
width: 20px;
background: #ff0000;
}
Obviously you can put this css snippet in sub-component.
source
share