From b389127f78f3a4b3b4492d3ac8cb2510a71667b9 Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Mon, 5 Dec 2022 15:55:23 +0100 Subject: [PATCH] Prevent "ha-chip" focus outline frame (#14535) --- src/components/ha-chip.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/ha-chip.ts b/src/components/ha-chip.ts index 88bfc8be3c..d9fa23971f 100644 --- a/src/components/ha-chip.ts +++ b/src/components/ha-chip.ts @@ -77,6 +77,10 @@ export class HaChip extends LitElement { span[role="gridcell"] { line-height: 14px; } + + :host { + outline: none; + } `; } }