Not sure where to post this, but is anyone else seeing strange vertical-stack-in-cards in the frontend after updating to 101.2?
before, this was displayed as a nice (optical) single card, while after updating the top card stands out:
and is styled differently
code:
- type: custom:vertical-stack-in-card
cards:
- type: glance
title: Buienradar headline
show_header_toggle: false
entities:
- sensor.br_feel_temperature
- sensor.br_wind_force
- sensor.br_condition
- type: entities
title: Buienradar details
show_header_toggle: false
entities:
- type: custom:fold-entity-row
head:
type: section
label: Temp & condition
entities:
- sensor.br_temperature
- sensor.br_ground_temperature
- sensor.br_condition_code
- sensor.br_detailed_condition
- sensor.br_full_condition
- sensor.br_symbol
- sensor.br_wind_direction
- sensor.br_wind_direction_azimuth
- sensor.br_wind_force
- sensor.br_wind_gust
- sensor.br_wind_speed
## - sensor.br_irradiance
- type: custom:fold-entity-row
head:
type: section
label: Barometer
entities:
- sensor.br_precipitation
- sensor.br_precipitation_forecast_average
- sensor.br_precipitation_forecast_total
- sensor.br_humidity
- sensor.br_pressure
- sensor.br_barometer
- sensor.br_barometer_value
- sensor.br_stationname
- sensor.br_visibility
Iâve updated to the new custom card, and also tried the version before, but that doesnât make a difference.
using @tom_l 's suggestion for entities card and using custom:ha-glance-card also shows the elevated card. Seems the cards now pickup on the default theme setting for border and shadow, where they didnât do so before?
this:
- type: entities
title: Darksky current headline
show_header_toggle: false
entities:
- sensor.dark_sky_temperature
- sensor.dark_sky_wind_speed
- sensor.dark_sky_summary
- sensor.dark_sky_icon
- type: custom:fold-entity-row
head:
type: section
label: More detailed info
entities:
- sensor.dark_sky_daily_summary
- sensor.dark_sky_hourly_summary
- sensor.dark_sky_summary
- sensor.dark_sky_apparent_temperature
- sensor.dark_sky_cloud_coverage
- sensor.dark_sky_dew_point
- sensor.dark_sky_humidity
- sensor.dark_sky_uv_index
- sensor.dark_sky_ozone
- sensor.dark_sky_precip
- sensor.dark_sky_precip_intensity
- sensor.dark_sky_precip_probability
- sensor.dark_sky_pressure
- sensor.dark_sky_visibility
- sensor.dark_sky_wind_bearing
- sensor.dark_sky_wind_gust
shows as I would like it to be:
why isnât this working with the glance card?