Mushroom Cards - Build a beautiful dashboard easily πŸ„ (Part 1)

Select Card Guide and Selection Value Section:

So:

card_mod:
  style:
    mushroom-select-option-control$:
      mushroom-select$: |
        .mdc-select__anchor{
          background: white !important
          border-radius: 20px !important;
        }

Just careful with setting it to white because on dark theme the text then wont be visible :slight_smile:

And if you also wanted to change the color of the dropdown icon:

card_mod:
  style:
    mushroom-select-option-control$:
      mushroom-select$: |
        .mdc-select__anchor{
          background: white !important;
          border-radius: 12px !important;
        }
        .mdc-select__dropdown-icon {
          fill: red !important
        }