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;