Hello everyone, my first post…
I’m trying in vain to remove or hide the duplicate frame from custom:vacuum-card, which is in a custom:stack-in-card.
In the custom:mushroom-vacuum-card I was able to hide the frame with the following code.
card_mod:
style: |
ha-card {
border: none;
}
here is the entire code:
type: custom:stack-in-card
mode: vertical
cards:
- type: custom:vacuum-card
card_mod:
style: |
ha-card {
border: none;
}
show_status: false
show_toolbar: false
show_name: false
entity: vacuum.uschi
actions:
start:
service_data:
entity_id: vacuum.start
stats:
default:
- entity_id: sensor.uschi_reinigungszeit
unit: Minuten
subtitle: Reinigungszeit
- entity_id: select.uschi_modus
subtitle: Modus
- entity_id: sensor.uschi_reinigungsbereich
unit: m²
subtitle: Reinigungsbereich
- type: custom:mushroom-vacuum-card
card_mod:
style: |
ha-card {
border: none;
}
entity: vacuum.uschi
commands:
- start_pause
- stop
- return_home
icon_animation: true
fill_container: false
icon_type: none
secondary_info: none
primary_info: none
I hope you can help me hide the frame
Thank you.