From d33430e53fce2fe32ab863d7513ad6f1816805f9 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Tue, 22 Aug 2023 11:09:18 +0200 Subject: [PATCH] Reduce ha-icon-button-group height (#17664) --- src/components/ha-icon-button-group.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/ha-icon-button-group.ts b/src/components/ha-icon-button-group.ts index cd739082ab..fe09ae262a 100644 --- a/src/components/ha-icon-button-group.ts +++ b/src/components/ha-icon-button-group.ts @@ -14,17 +14,17 @@ export class HaIconButtonGroup extends LitElement { display: flex; flex-direction: row; align-items: center; - height: 56px; + height: 48px; border-radius: 28px; background-color: rgba(139, 145, 151, 0.1); box-sizing: border-box; width: auto; - padding: 4px; - gap: 4px; + padding: 0; } ::slotted(.separator) { background-color: rgba(var(--rgb-primary-text-color), 0.15); width: 1px; + margin: 0 1px; height: 40px; } `;