M4D1NG3R
M4D1NG3R
@acesyde I am not sure whether this is intended or not, but for me the updated card removes the ha-card-border-radius set in the theme. This issue had previously been solved:...
@acesyde removing `ele.style.borderRadius = '0';` (line 102 & 124 in src/vertical-stack-in-card.ts) solved my issue and also removes the borders from `history-graph` and `humidifier` Could you verify? Please also check whether...
ok, I am sorry, I just rebuild it, but this time it also did not work for me. I might have had the original file in cache.
Also, I get some weird behavior when using the mushroom chip card:  on the one side the theme is applied, on the other it's not. When comparing https://github.com/ofekashery/vertical-stack-in-card/commit/d0cb3bfcaa3f9a45f0b1b5f62cf9259d09deda23 which...
Ok, I may have the fix for my issue: adding `overflow: hidden;` after line 171 fixed my issue. this needs to be done additionally to removing ele.style.borderRadius = '0'; (line...
@acesyde Yeah, me too, do you have the same problem with [stack-in-card]( https://github.com/custom-cards/stack-in-card)?
@acesyde please try replacing line 69-77 ``` // Style cards this._cards.forEach((card) => { if ((card as any).updateComplete) { (card as any).updateComplete.then(() => this._cleanCardStyle(card)); } else { this._cleanCardStyle(card); } }); }...
@kobuki I am using a Telekom router as well. you may need to increase the timeout try this: ``` from aiohttp import ClientSession, ClientTimeout ... async def main() -> None:...