Multiple Entity Row Ideal formatting for sensors

Using GitHub - benct/lovelace-multiple-entity-row: Show multiple entity states and attributes on entity rows in Home Assistant's Lovelace UI
HACS

This is what I got so far. I’m trying to move the four things at the bottom to the single row at the top

type: entities
entities:
  - entity: binary_sensor.smoke_alarm_downstairs
    type: custom:multiple-entity-row
    show_state: false
    name: Sensors
    icon: mdi:smoke-detector
    tap_action: none
    entities:
      - entity: binary_sensor.upstairs_sensor
        icon: true
      - entity: binary_sensor.downstairs_sensor
        icon: true
      - entity: binary_sensor.smoke_alarm_upstairs
        icon: true
      - entity: binary_sensor.smoke_alarm_downstairs
        icon: true
  - entity: binary_sensor.upstairs_sensor
  - entity: binary_sensor.downstairs_sensor
  - entity: binary_sensor.smoke_alarm_upstairs
  - entity: binary_sensor.smoke_alarm_downstairs
title: Sensors
state_color: true

Now the four things seem to work fine but what do you think about the big title on the left? There seems to be no way of removing that and just using the whole width for the items.

Ideally I was hoping with more space than the words could fit on a single line instead of on two lines. I find the gap between the words when it overflows a line to be very strange looking and I don’t think you can change that format easily. I’d rather not have css to what is already a very complicated thing without a UI.

At the moment the only way is to shorten the text to something as short as possible while still making sense.

I’m not sure why my text is in grey while the sample is in a more readable bright blue

How are you showing your sensers in your dashboard?

Eg if I put name: " "
it still takes up the same space.