Lovelace Glance card with entity-filter

As it looks like Lovelace is going to become the default frontend I thought I had better get understanding it. I am trying to get a glance card set up with entity-filtering to just show lights that are on. With a glance card, I can display rows and rows of devices. When combined with entity filtering I only seem to get a single row which means most of my devices don’t show up.
This what I have set up so far to test. It works as expected, only displaying lights that are on and going away entirely when all the lights are off. Is there something I am missing that would give me multiple rows to show more devices?

  - type: entity-filter
    title: lights and switches currently on
    show_header_toggle: false
    entities:
      - light.kitchen_level
      - switch.kitchen_counter_switch
      - light.floorlamp
      - light.living_room_desk_lamp
      - switch.attic_switch
      - light.basement_stairs_level
      - light.media_1
      - light.media_2
      - light.media_wall
      - light.office
      - light.frontporch
      - light.garage_dimmer_level
      - light.garage_upper_level
      - switch.conservatory
    state_filter:
      - "on"
    show_empty: false
    card:
      type: glance
      title: lights and switches currently on

Update: I guess it does work as I have it.

do you still need help with this?
just wondering why you have this at the bottom?

    card:
      type: glance
      title: lights and switches currently on

It appears that what I posted works but if you can see a better way to accomplish what I am after, I would appreciate it. This is my first go at Lovelace.
There isn’t a particular reason why the lines are at the bottom.

that’s the way to do it :slight_smile: keep going

Thanks. After 3 years or so with Home Assistant there is always something new to learn.