From 6f5ba47e1569f7d0b1e3b2b7668d535f2023e383 Mon Sep 17 00:00:00 2001 From: Julian Tabel Date: Mon, 29 Jun 2026 15:33:10 +0200 Subject: [PATCH] Split weather into two separate sections instead of horizontal-stack Outside Now and Hourly Forecast now sit in their own column boxes, consistent with how room sections are laid out. Co-Authored-By: Claude Sonnet 4.6 --- dashboards/klima.yaml | 57 +++++++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/dashboards/klima.yaml b/dashboards/klima.yaml index 5e320c2..44622db 100644 --- a/dashboards/klima.yaml +++ b/dashboards/klima.yaml @@ -4,35 +4,34 @@ views: type: sections max_columns: 2 sections: - - column_span: 2 - cards: - - type: horizontal-stack - cards: - - type: entities - title: Outside Now - entities: - - entity: sensor.openweathermap_condition - name: Condition - - entity: sensor.openweathermap_temperature - name: Temperature - - entity: sensor.openweathermap_feels_like_temperature - name: Feels Like - - entity: sensor.openweathermap_humidity - name: Humidity - - entity: sensor.openweathermap_wind_speed - name: Wind Speed - - entity: sensor.openweathermap_wind_gust - name: Wind Gust - - entity: sensor.openweathermap_cloud_coverage - name: Cloud Coverage - - entity: sensor.openweathermap_uv_index - name: UV Index - - entity: sensor.openweathermap_precipitation_kind - name: Precipitation - - type: weather-forecast - entity: weather.openweathermap - forecast_type: hourly - name: Hourly Forecast + - cards: + - type: entities + title: Outside Now + entities: + - entity: sensor.openweathermap_condition + name: Condition + - entity: sensor.openweathermap_temperature + name: Temperature + - entity: sensor.openweathermap_feels_like_temperature + name: Feels Like + - entity: sensor.openweathermap_humidity + name: Humidity + - entity: sensor.openweathermap_wind_speed + name: Wind Speed + - entity: sensor.openweathermap_wind_gust + name: Wind Gust + - entity: sensor.openweathermap_cloud_coverage + name: Cloud Coverage + - entity: sensor.openweathermap_uv_index + name: UV Index + - entity: sensor.openweathermap_precipitation_kind + name: Precipitation + + - cards: + - type: weather-forecast + entity: weather.openweathermap + forecast_type: hourly + name: Hourly Forecast - cards: - type: entities