Trying to remove a gap in a vertical stack

I may not be attacking this the correct way. Below is a screen shot. As you can see, there is a gap between Select Service and Selection that I can’t figure out how to remove. Any suggestions?

  - title: Radio
    icon: mdi:music
    cards:
      - type: custom:compact-custom-header    
      - type: vertical-stack
        cards:
          - type: entities
            title: Radio
            show_header_toggle: false
            entities:
              - input_select.speakers
              - input_select.radio_source
          - type: conditional
            conditions:
              - entity: input_select.radio_source
                state: "Spotify"
            card:
              type: entities
              entities:
                - input_select.spotify_selection
                - script.spotify538
                - input_number.volume
          - type: conditional
            conditions:
              - entity: input_select.radio_source
                state: "SiriusXM"
            card:
              type: entities
              entities:
                - input_select.siriusxm_station
                - script.siriusxm538
                - input_number.volume

          - type: conditional
            conditions:
              - entity: input_select.radio_source
                state: "Tunein"
            card:
              type: entities
              entities:
                - input_select.radio_station
                - script.radio538
                - input_number.volume

      - type: vertical-stack
        cards:
          - type: conditional
            conditions:
              - entity:  input_select.speakers
                state: "Livingroom"
            card:
              type: media-control
              entity: media_player.echo_plus
          - type: conditional
            conditions:
              - entity:  input_select.speakers
                state: "Laundryroom"
            card:
              type: media-control
              entity: media_player.laundry_room
          - type: conditional
            conditions:
              - entity:  input_select.speakers
                state: "Bathroom"
            card:
              type: media-control
              entity: media_player.bathroom
          - type: conditional
            conditions:
              - entity:  input_select.speakers
                state: "Bedroom"
            card:
              type: media-control
              entity: media_player.jeffs_dot
          - type: conditional
            conditions:
              - entity:  input_select.speakers
                state: "Garage"
            card:
              type: media-control
              entity: media_player.garage

Use custom card Vertical-stack-in-card instead of the default vertical stack.

3 Likes

Wonderful, thank you! Works great!

1 Like

wish this card was also available as horizontal

stack-in-card works as vertical & horizontal