This commit is contained in:
Ondrej Zara 2020-03-14 22:45:07 +01:00
parent 8908e5b1c1
commit 1339ce27ad
No known key found for this signature in database
GPG Key ID: B0A5751E616840C5
6 changed files with 9 additions and 10 deletions

View File

@ -1,4 +1,6 @@
.art {
margin-right: var(--icon-spacing);
.icon, img { display: block; }
.icon, img {
display: block;
width: 100%;
}
}

View File

@ -14,11 +14,8 @@ cyp-player {
}
.art {
margin-right: 0;
width: @art-size;
height: @art-size;
img, .icon {
width: @art-size;
}
}
.info {

View File

@ -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

View File

@ -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() {}

View File

@ -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;
}