From 0643f0c207477cec40f12a6ec4485135a6a64447 Mon Sep 17 00:00:00 2001 From: Egor Date: Sat, 30 Dec 2017 00:14:04 -0800 Subject: [PATCH] minor fixes --- web/app/pods/components/lights-tab/component.js | 2 +- web/app/styles/hue-controls.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/web/app/pods/components/lights-tab/component.js b/web/app/pods/components/lights-tab/component.js index d69a276..2443492 100644 --- a/web/app/pods/components/lights-tab/component.js +++ b/web/app/pods/components/lights-tab/component.js @@ -195,7 +195,7 @@ export default Component.extend({ syncLight = this.get('syncLight'); if (rgb[0] !== 255 && rgb[1] !== 255 && rgb[2] !== 255) { - options['xy'] = this.rgbToCie(rgb[0], rgb[1], rgb[2]); + options['xy'] = rgbToCie(rgb[0], rgb[1], rgb[2]); } options['transitiontime'] = 0; diff --git a/web/app/styles/hue-controls.scss b/web/app/styles/hue-controls.scss index 217d80f..7bed7ba 100644 --- a/web/app/styles/hue-controls.scss +++ b/web/app/styles/hue-controls.scss @@ -65,6 +65,7 @@ .navigation-item { font-size: 20px; padding: 0 10px 0 10px; + font-size: 19px; &.active { font-weight: bold; cursor: default;