Icon in Auto Entities Karte ausblenden

Hi,

ich hab eine Karte in der ich mir alle aktiven Verbraucher anzeigen lasse.

Ich hätte gern die icons ausgeblendet und die Schrift linksbündig.
Wie bekomme ich das hin

Das ist der code der Karte

type: custom:auto-entities
card:
  type: entities
  card_mod:
    style: |
      ha-card {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
      }
filter:
  include:
    - entity_id: "*stromi*"
      state: ">0"
      options: {}
  exclude: []
grid_options:
  columns: 12
  rows: auto

Danke für die Hilfe

Andreas

Ich habs gerade selbst herausgefunden :slight_smile:

type: custom:auto-entities
card:
  type: entities
  card_mod:
    style: |
      ha-card {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        margin-left: -70px;
      }
filter:
  include:
    - entity_id: "*stromi*"
      state: ">0"
      options:
        icon: none;
  exclude: []
grid_options:
  columns: 12
  rows: auto

2 „Gefällt mir“