a bit less glow, bug fix
This commit is contained in:
parent
9c573bc334
commit
e75cea75e1
2 changed files with 3 additions and 3 deletions
|
|
@ -61,8 +61,8 @@ export default Em.Component.extend({
|
|||
this.set('lightsDataIntervalHandle', setInterval(this.updateLightData.bind(this), 1000));
|
||||
}
|
||||
|
||||
if (this.get('storage').get('huegasm.selectedTab')) {
|
||||
this.set('selectedTab', Number(this.get('storage').get('huegasm.selectedTab')));
|
||||
if (!Em.isNone(this.get('storage').get('huegasm.selectedTab'))) {
|
||||
this.set('selectedTab', this.get('storage').get('huegasm.selectedTab'));
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ $playerDefaultIconColor: #BBBBBB;
|
|||
$footerHeight: 40px;
|
||||
$playerBottomHeight: 340px;
|
||||
$secondaryThemeColor: #F12B24;
|
||||
$glowingText: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF;
|
||||
$glowingText: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #228DFF;
|
||||
$dimmerOnButtonColor: #404040;
|
||||
|
||||
// BRIDGE FINDER
|
||||
|
|
|
|||
Reference in a new issue