Card-mode: brak ikon i mniejsze odstępy między encjami

Cześć,
głowię się nad tym już jakiś czas, ale że nie znam CSS to raczej zgaduje i niestety mi nie wychodzi.
Chciałbym użyć karty encji i mieć w niej kilka włączników światła, ale chciałbym również żeby ikony nie były wyświetlane oraz żeby odstępy między liniami były mniejsze. Znalazłem sposoby na obie te rzeczy, ale nie umiem ich połączyć żeby zastosować jednocześnie oba rozwiązania.

Może mi to ktoś poprawić ?

type: entities
entities:
  - entity: light.wlacznik_swiatla_salon_l1
    name: Stół
    card_mod:
      style:
        hui-generic-entity-row: null
        $: |
          hui-generic-entity-row {
            height: 25px;
          }    
        .: |
          state-badge {
            display: none;
          }
          .info {
            margin-left:0px !important;
          }
  - entity: light.wlacznik_swiatla_salon_l2
    name: Kanapa
    card_mod:
      style:
        hui-generic-entity-row: null
        $: |
          hui-generic-entity-row {
            height: 25px;
          }    
        .: |
          state-badge {
            display: none;
          }
          .info {
            margin-left:0px !important;
          }
  - entity: light.wlacznik_swiatla_salon_l3
    name: TV
    card_mod:
      style:
        hui-generic-entity-row: null
        $: |
          hui-generic-entity-row {
            height: 25px;
          }    
        .: |
          state-badge {
            display: none;
          }
          .info {
            margin-left:0px !important;
          }
  - entity: light.swiatla_choinkowe
    name: Choinka
    card_mod:
      style:
        hui-generic-entity-row: null
        $: |
          hui-generic-entity-row {
            height: 25px;
          }    
        .: |
          state-badge {
            display: none;
          }
          .info {
            margin-left:0px !important;
          }
title: Salon

Ehh… pare minut po publikacji udało się

    card_mod:
      style:
        hui-generic-entity-row:
          $: |
            state-badge {
              display: none;
            }
            .info {
              margin-left:0 !important;
            }
          .: |
            hui-generic-entity-row {
              height: 20px;
            }