Hey,
this is something that's been bothering me for a while.
I'm building an adaptive dashboard based on "Adaptive Mushroom".
Works great in principle, but I'd like to copy over the badges from my old dashboard as I like the design much more.
I cant get the Mushroom chips or any combination of custom button cards to look the way I'm used from the badges.
However, when I add the badges in the YAML of my dashboard, they are not rendered at all. No errors, nothing. Just not visible.
`views:
- theme: Adaptive Mushroom
title: Home
icon: mdi:home-assistant
path: home
visible:- user: x
- user: x
type: custom:grid-layout
layout:
grid-template-columns: 0em 74px 30% 30% 30% auto
grid-template-rows: grid-title-row-height auto auto auto
grid-gap: 0.5em
grid-template-areas: |
". . title title title ."
". nav center0 center0 people ."
". nav left1 center1 right1 ."
". nav left2 center2 right2 ."
mediaquery:
'(max-width: 600px)':
grid-template-columns: 3% 94% 3%
grid-template-rows: auto
grid-gap: 0em
grid-template-areas: |
". title ."
". people ."
". center0 ."
". right0 ."
". left1 ."
". left2 ."
". center1 ."
". center2 ."
". right1 ."
". right2 ."
"footer footer footer"
badges: - type: entity
show_name: true
show_state: true
show_icon: true
entity: sensor.datum
color: ''
name: Heute ist - type: entity
show_name: true
show_state: true
show_icon: true
entity: sensor.zeit
color: ''
name: Es ist - type: entity
show_name: true
show_state: true
show_icon: true
entity: sensor.aussentemperatur
color: ''
show_entity_picture: false`