DBuit / light-popup-card

Lovelace card to use as custom pop-up for light in homekit style
168 stars 38 forks source link

Remove !important from CSS style #89

Open marcocondrache opened 2 years ago

marcocondrache commented 2 years ago

Styling with card mod doesn't work for changing the background of the popup card as the background line is marked as !important.

:host {
     background-color: #000 !important;
}

Generally speaking marking css lines with important isn't a good practice especially when developing modules for user customization.

Let me know if you need a pull request for fixing this issue.

Thank You