From d9a9038cecc0bd291f602c42d078ba92b93b7a7d Mon Sep 17 00:00:00 2001 From: ildar170975 <71872483+ildar170975@users.noreply.github.com> Date: Mon, 3 Jun 2024 16:40:46 +0300 Subject: [PATCH] Update ha-entity-marker.ts: add CSS variable for border-radius (#20914) * Update ha-entity-marker.ts * fix whitespace --- src/components/map/ha-entity-marker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map/ha-entity-marker.ts b/src/components/map/ha-entity-marker.ts index 248ace4af7..178de1063f 100644 --- a/src/components/map/ha-entity-marker.ts +++ b/src/components/map/ha-entity-marker.ts @@ -48,7 +48,7 @@ class HaEntityMarker extends LitElement { width: 48px; height: 48px; font-size: var(--ha-marker-font-size, 1.5em); - border-radius: 50%; + border-radius: var(--ha-marker-border-radius, 50%); border: 1px solid var(--ha-marker-color, var(--primary-color)); color: var(--primary-text-color); background-color: var(--card-background-color);