From 0c32d1eb4e973818ed120bf8f4d9226e77e870a3 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Thu, 5 Oct 2023 15:48:18 +0200 Subject: [PATCH] Set border-radius to 0 for img in thread panel (#18124) --- .../integration-panels/thread/thread-config-panel.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/panels/config/integrations/integration-panels/thread/thread-config-panel.ts b/src/panels/config/integrations/integration-panels/thread/thread-config-panel.ts index a9936b0293..95624b377e 100644 --- a/src/panels/config/integrations/integration-panels/thread/thread-config-panel.ts +++ b/src/panels/config/integrations/integration-panels/thread/thread-config-panel.ts @@ -635,6 +635,9 @@ export class ThreadConfigPanel extends SubscribeMixin(LitElement) { cursor: default; overflow: visible; } + ha-list-item img { + border-radius: 0; + } ha-svg-icon[slot="meta"] { width: 24px; }