From 551c0bcc265428c9b752f9934d0b9dacba186683 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 12 May 2022 18:25:55 -0400 Subject: [PATCH] Allow overflow to fix issue #40 Allow overflow to fix issue #40 Honestly I'm doing this pull request straight from github, without testing it. I have more experience on backend stuff and python, not much in the frontend or typescript. I would have to learn and figure out how to test it. And I plan to do, WHEN I have more time, but meanwhile this guesswork change looks like the correct thing to do based in the workaround posted. If someone can also review or test it I apreciate.! --- 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 2308c58..37c17ec 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; } `; }