From 3ebf816ce20ef8230fe867aa0c9cc0399e045eb7 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Tue, 1 Dec 2020 22:51:15 +0100 Subject: [PATCH] Fix height of `ha-icon-input` (#7767) --- src/components/ha-icon-input.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/ha-icon-input.ts b/src/components/ha-icon-input.ts index 83761e6c40..11f310c91f 100644 --- a/src/components/ha-icon-input.ts +++ b/src/components/ha-icon-input.ts @@ -60,8 +60,9 @@ export class HaIconInput extends LitElement { static get styles() { return css` ha-icon { - position: relative; - bottom: 4px; + position: absolute; + bottom: 2px; + right: 0; } `; }