diff --git a/dist/weather-card.js b/dist/weather-card.js
index 65092377..66217f21 100644
--- a/dist/weather-card.js
+++ b/dist/weather-card.js
@@ -151,10 +151,10 @@ class WeatherCard extends LitElement {
${stateObj.state}
${this._config.name
@@ -251,9 +251,9 @@ class WeatherCard extends LitElement {
${daily.temperature}${this.getUnit("temperature")}
@@ -265,11 +265,11 @@ class WeatherCard extends LitElement {
`
: ""}
- ${daily.precipitation !== undefined &&
+ ${!this._config.hide_precipitation &&
+ daily.precipitation !== undefined &&
daily.precipitation !== null
? html`
-
${daily.precipitation} ${this.getUnit("precipitation")}
`
@@ -447,10 +447,6 @@ class WeatherCard extends LitElement {
font-weight: 300;
}
- .precipitation ha-icon {
- height: 18px;
- }
-
.icon.bigger {
width: 10em;
height: 10em;