Compare commits

...

1 Commits

Author SHA1 Message Date
Petar Petrov
46c131603b Fix heading card badges overflow on narrow screens 2026-02-05 09:35:32 +02:00

View File

@@ -155,6 +155,7 @@ export class HuiHeadingCard extends LitElement implements LovelaceCard {
align-items: center;
overflow: visible;
gap: var(--ha-space-2);
max-height: 100%;
}
.content:hover ha-icon-next {
transform: translateX(calc(4px * var(--scale-direction)));
@@ -222,6 +223,9 @@ export class HuiHeadingCard extends LitElement implements LovelaceCard {
align-items: center;
justify-content: flex-end;
gap: 4px 10px;
flex-wrap: wrap;
max-height: 100%;
overflow-y: clip;
}
`;
}