Can someone help me with some missing syntax? In spite of all the reading Iāve done, Iām missing something fundamental between moving card-mod styles from a card to a theme.
This works using card-mod with a Mushroom Select card:
card_mod:
style:
mushroom-select-option-control$:
mushroom-select$: |
.mdc-select__anchor {
border-radius: 30px !important;
}
Therefore, I thought it would be easy to move it to a theme. However, the following does not work:
card-mod-card-yaml: |
.type-custom-mushroom-select-card$:
.mushroom-select-option-control$:
mushroom-select$: |
.mdc-select__anchor {
border-radius: 30px !important;
}
I assume Iām off somewhere with the .type-custom-mushroom-select-card$:
but Iāve tried a lot of different things. Now Iām not sure if I need to be chasing shadow root stuff, indentation, etc. Any help would be greatly appreciated!