From f492224dc9bdcab413eafd7168be04ca466c768f Mon Sep 17 00:00:00 2001 From: Jacob Berelman <630000+stickpin@users.noreply.github.com> Date: Sat, 9 Mar 2024 09:25:50 +0100 Subject: [PATCH] Allow overflow fix by @sdrapha https://github.com/custom-cards/stack-in-card/pull/42 --- src/stack-in-card.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stack-in-card.ts b/src/stack-in-card.ts index e5c4dfc..aa1f683 100644 --- a/src/stack-in-card.ts +++ b/src/stack-in-card.ts @@ -34,7 +34,7 @@ class StackInCard extends LitElement implements LovelaceCard { static get styles(): CSSResult { return css` ha-card { - overflow: hidden; + overflow: visible; } `; }