minor fixes

This commit is contained in:
Egor 2017-12-30 00:14:04 -08:00
parent 50218dcc86
commit 0643f0c207
2 changed files with 2 additions and 1 deletions

View file

@ -195,7 +195,7 @@ export default Component.extend({
syncLight = this.get('syncLight'); syncLight = this.get('syncLight');
if (rgb[0] !== 255 && rgb[1] !== 255 && rgb[2] !== 255) { 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; options['transitiontime'] = 0;

View file

@ -65,6 +65,7 @@
.navigation-item { .navigation-item {
font-size: 20px; font-size: 20px;
padding: 0 10px 0 10px; padding: 0 10px 0 10px;
font-size: 19px;
&.active { &.active {
font-weight: bold; font-weight: bold;
cursor: default; cursor: default;