lovelace-layout-card icon indicating copy to clipboard operation
lovelace-layout-card copied to clipboard

`card_margin` broken on grid layout

Open red4dj opened this issue 7 months ago • 4 comments

My Home Assistant version: 2024.7.1

Layout-card version (FROM BROWSER CONSOLE): 2.4.5

What I am doing: Adding the card_margin property to a grid-layout

What I expected to happen: Apply 0px margin to each card in grid layout.

What happened instead: No custom margin was applied. The cards kept the default margin.

Minimal steps to reproduce:

type: custom:layout-card
layout_type: custom:grid-layout
cards:
  - type: entity
    entity: sensor.time
    view_layout:
      grid-area: main
  - type: entity
    entity: sensor.date
    view_layout:
      grid-area: sidebar
layout:
  grid-template-columns: 33% auto
  grid-template-areas: |
    "main sidebar"
  margin: 0px
  card_margin: 0px

Error messages from the browser console: N/A


By putting an X in the boxes ([X]) below, I indicate that I:

  • [X] Understand that this is a channel for reporting bugs, not a support forum (https://community.home-assistant.io/).
  • [X] Have made sure I am using the latest version of the plugin.
  • [X] Have followed the troubleshooting steps of the "Common Problems" section of https://github.com/thomasloven/hass-config/wiki/Lovelace-Plugins.
  • [X] Understand that leaving one or more boxes unticked or failure to follow the template above may increase the time required to handle my bug-report, or cause it to be closed without further action.

red4dj avatar Jul 14 '24 23:07 red4dj