Hello!
I have a grid card that contains two horizontal stacks under an entities card. The title of the first horizontal stack (Inside) appears under the entities card but the title of the second horizontal stack (locks) appears inside, at the bottom of, the first horizontal stack:
Here’s the configuration:
type: grid
cards:
- type: entities
entities:
- type: section
label: People
- entity: person.julie
- entity: person.tony
- type: section
label: Time and Date
- entity: sensor.time_date
- entity: sensor.moon
- type: conditional
conditions:
- entity: binary_sensor.workday_today
state: 'on'
row:
entity: binary_sensor.workday_today
state_color: true
- type: conditional
conditions:
- entity: binary_sensor.workday_tomorrow
state: 'on'
row:
entity: binary_sensor.workday_tomorrow
state_color: true
- type: section
label: Weather
- entity: weather.ec_hourly_forecast
name: Hourly Forecast
- entity: weather.ec_daily_forecast
name: Daily Forecast
state_color: true
- type: horizontal-stack
title: Inside
cards:
- type: thermostat
entity: climate.t6_pro_z_wave_programmable_thermostat
- type: gauge
entity: sensor.t6_pro_z_wave_programmable_thermostat_humidity
min: 0
max: 100
- type: horizontal-stack
title: locks
cards:
- type: button
tap_action:
action: toggle
entity: lock.door_lock
show_state: true
show_icon: true
- type: button
tap_action:
action: toggle
entity: lock.smart_code_with_home_connect_technology
show_state: true
columns: 1
square: false
Am I doing something wrong, or should this be considered an issue?
Thanks!