Do not reserve space for condition card in grid section (#19973)

* Do not reserve space for condition card in grid section

* Update src/panels/lovelace/sections/hui-grid-section.ts

Co-authored-by: Bram Kragten <mail@bramkragten.nl>

---------

Co-authored-by: Bram Kragten <mail@bramkragten.nl>
This commit is contained in:
Paul Bottein 2024-03-04 15:31:49 +01:00 committed by GitHub
parent b99072d986
commit 50da4bcd37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -216,6 +216,14 @@ export class GridSection extends LitElement implements LovelaceSectionElement {
grid-column: span var(--column-size, 4);
}
.card:has(> *) {
display: block;
}
.card:has(> *[hidden]) {
display: none;
}
.add {
outline: none;
grid-row: span var(--row-size, 1);