cleanup
This commit is contained in:
parent
fee8ae75d0
commit
0e2a9da895
3 changed files with 8 additions and 11 deletions
|
@ -11,7 +11,7 @@ cyp-song {
|
||||||
cyp-queue & {
|
cyp-queue & {
|
||||||
> .icon {
|
> .icon {
|
||||||
width: 32px;
|
width: 32px;
|
||||||
margin-right: 8px; // fixme variable
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
.track { display: none; }
|
.track { display: none; }
|
||||||
|
|
||||||
|
@ -39,10 +39,7 @@ cyp-song {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
|
|
||||||
> .icon {
|
> .icon { width: 64px;}
|
||||||
width: 64px; // fixme variable
|
|
||||||
}
|
|
||||||
|
|
||||||
> .icon-play { display: none; }
|
> .icon-play { display: none; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1388,9 +1388,9 @@ class Settings extends Component {
|
||||||
this._app.setAttribute("color", color);
|
this._app.setAttribute("color", color);
|
||||||
}
|
}
|
||||||
|
|
||||||
_setYtLimit(limit) {
|
_setYtLimit(ytLimit) {
|
||||||
saveToStorage("color", color);
|
saveToStorage("ytLimit", ytLimit);
|
||||||
setYtLimit(limit);
|
setYtLimit(ytLimit);
|
||||||
}
|
}
|
||||||
|
|
||||||
_onComponentChange(c, isThis) {
|
_onComponentChange(c, isThis) {
|
||||||
|
|
|
@ -70,9 +70,9 @@ class Settings extends Component {
|
||||||
this._app.setAttribute("color", color);
|
this._app.setAttribute("color", color);
|
||||||
}
|
}
|
||||||
|
|
||||||
_setYtLimit(limit) {
|
_setYtLimit(ytLimit) {
|
||||||
saveToStorage("color", color);
|
saveToStorage("ytLimit", ytLimit);
|
||||||
conf.setYtLimit(limit);
|
conf.setYtLimit(ytLimit);
|
||||||
}
|
}
|
||||||
|
|
||||||
_onComponentChange(c, isThis) {
|
_onComponentChange(c, isThis) {
|
||||||
|
|
Loading…
Reference in a new issue