art size
This commit is contained in:
parent
8908e5b1c1
commit
1339ce27ad
6 changed files with 9 additions and 10 deletions
|
@ -1,4 +1,6 @@
|
|||
.art {
|
||||
margin-right: var(--icon-spacing);
|
||||
.icon, img { display: block; }
|
||||
.icon, img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,11 +14,8 @@ cyp-player {
|
|||
}
|
||||
|
||||
.art {
|
||||
margin-right: 0;
|
||||
width: @art-size;
|
||||
height: @art-size;
|
||||
img, .icon {
|
||||
width: @art-size;
|
||||
}
|
||||
}
|
||||
|
||||
.info {
|
||||
|
|
|
@ -6,9 +6,9 @@ cyp-tag {
|
|||
padding-bottom: 0;
|
||||
|
||||
.art {
|
||||
margin-right: var(--icon-spacing);
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
img, .icon { width: 100%; }
|
||||
|
||||
.icon {
|
||||
filter: drop-shadow(var(--text-shadow));
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -483,7 +483,7 @@ function searchSongs$1(filter) {
|
|||
}
|
||||
|
||||
function albumArt$1(songUrl) {
|
||||
return new Promise(resolve => setTimeout(resolve, 3000));
|
||||
return new Promise(resolve => setTimeout(resolve, 1000));
|
||||
}
|
||||
|
||||
function init$1() {}
|
||||
|
|
|
@ -69,7 +69,7 @@ export function searchSongs(filter) {
|
|||
}
|
||||
|
||||
export function albumArt(songUrl) {
|
||||
return new Promise(resolve => setTimeout(resolve, 3000));
|
||||
return new Promise(resolve => setTimeout(resolve, 1000));
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue