How can I apply styles to two different levels of shadow roots? Iām trying to apply styles to elements under both.
hui-card-features$:
hui-cover-position-card-feature$:
**HERE**
ha-control-slider$:
**AND HERE**
But I donāt know how to splice this together in a valid way, I just donāt know the correct syntax here. My thinking was either of these two but neither work:
hui-card-features$:
hui-cover-position-card-feature$: |
div.container {
padding: 0 !important;
}
ha-control-slider$: |
.slider .slider-track-bar {
border-radius: 10px !important;
}
OR
hui-card-features$:
hui-cover-position-card-feature$: |
div.container {
padding: 0 !important;
}
hui-card-features$:
hui-cover-position-card-feature$:
ha-control-slider$: |
.slider .slider-track-bar {
border-radius: 10px !important;
}