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 & {
|
||||
> .icon {
|
||||
width: 32px;
|
||||
margin-right: 8px; // fixme variable
|
||||
margin-right: 8px;
|
||||
}
|
||||
.track { display: none; }
|
||||
|
||||
|
@ -39,10 +39,7 @@ cyp-song {
|
|||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
|
||||
> .icon {
|
||||
width: 64px; // fixme variable
|
||||
}
|
||||
|
||||
> .icon { width: 64px;}
|
||||
> .icon-play { display: none; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1388,9 +1388,9 @@ class Settings extends Component {
|
|||
this._app.setAttribute("color", color);
|
||||
}
|
||||
|
||||
_setYtLimit(limit) {
|
||||
saveToStorage("color", color);
|
||||
setYtLimit(limit);
|
||||
_setYtLimit(ytLimit) {
|
||||
saveToStorage("ytLimit", ytLimit);
|
||||
setYtLimit(ytLimit);
|
||||
}
|
||||
|
||||
_onComponentChange(c, isThis) {
|
||||
|
|
|
@ -70,9 +70,9 @@ class Settings extends Component {
|
|||
this._app.setAttribute("color", color);
|
||||
}
|
||||
|
||||
_setYtLimit(limit) {
|
||||
saveToStorage("color", color);
|
||||
conf.setYtLimit(limit);
|
||||
_setYtLimit(ytLimit) {
|
||||
saveToStorage("ytLimit", ytLimit);
|
||||
conf.setYtLimit(ytLimit);
|
||||
}
|
||||
|
||||
_onComponentChange(c, isThis) {
|
||||
|
|
Loading…
Reference in a new issue