From a59d66bdf17e45f8e7bf576af35e5c5b82b9590b Mon Sep 17 00:00:00 2001 From: LJU Date: Tue, 9 Jun 2020 12:47:27 +0200 Subject: [PATCH] Button cursor and fix alignment This will make the button clickable and fixes the alignment of the custom buttons. --- light-entity-row.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/light-entity-row.js b/light-entity-row.js index 8a8ef35..1111d98 100644 --- a/light-entity-row.js +++ b/light-entity-row.js @@ -32,12 +32,13 @@ class AdjustableLightEntityRow extends Polymer.Element { } .flex-box { display: flex; - justify-content: space-between; + justify-content: space-evenly; } paper-button { color: var(--primary-color); font-weight: 500; margin-right: -.57em; + cursor: pointer; }