diff --git a/dist/weather-card.js b/dist/weather-card.js index 32939505..f3a99c1b 100644 --- a/dist/weather-card.js +++ b/dist/weather-card.js @@ -311,6 +311,18 @@ class WeatherCard extends LitElement { ` : ""} + +
+ + + + + ${Math.round(daily.wind_speed)} + ${this.getUnit("length")}/h + + +
+ ` )} @@ -493,7 +505,7 @@ class WeatherCard extends LitElement { color: var(--secondary-text-color); } - .precipitation { + .wind, .precipitation { color: var(--primary-text-color); font-weight: 300; } @@ -529,6 +541,14 @@ class WeatherCard extends LitElement { word-wrap: break-word; width: 30%; } + + .windspeed { + white-space: nowrap; + } + + .wind-direction-arrow { + display: inline-block; + } `; } }