🔹 Auto-entities - Automatically fill cards with entities

try adding card-mod directly to mushroom template

type: custom:stack-in-card
mode: horizontal
cards:
  - type: custom:mushroom-template-card
    primary: Hello, {{user}}
    secondary: How are you?
    icon: mdi:home
  - type: custom:mushroom-template-card
    primary: Hello, {{user}} Long text abcd abdcf 
    secondary: How are you?
    icon: mdi:home
    card_mod:
      style:
        mushroom-state-info$: |
          .container {
            overflow: hidden !important;
          }
          .primary {
            animation: marquee 3s linear infinite;
            overflow: visible !important;
           } 
          @keyframes marquee {
            from {
              transform: translateX(0%);
            }
            to {
              transform: translateX(-100%);
            }
          }

CleanShot 2023-12-31 at 18.56.04