diff --git a/src/components/entity/state-badge.ts b/src/components/entity/state-badge.ts index a9c1afd35c..7e19d97e48 100644 --- a/src/components/entity/state-badge.ts +++ b/src/components/entity/state-badge.ts @@ -140,6 +140,9 @@ export class StateBadge extends LitElement { if (domain === "update") { hostStyle.borderRadius = "0"; } + if (domain === "media_player") { + hostStyle.borderRadius = "8%"; + } } else if (this.color) { // Externally provided overriding color wins over state color iconStyle.color = this.color;