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 { .art {
margin-right: var(--icon-spacing); .icon, img {
.icon, img { display: block; } display: block;
width: 100%;
}
} }

View file

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

View file

@ -6,9 +6,9 @@ cyp-tag {
padding-bottom: 0; padding-bottom: 0;
.art { .art {
margin-right: var(--icon-spacing);
width: 64px; width: 64px;
height: 64px; height: 64px;
img, .icon { width: 100%; }
.icon { .icon {
filter: drop-shadow(var(--text-shadow)); 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) { function albumArt$1(songUrl) {
return new Promise(resolve => setTimeout(resolve, 3000)); return new Promise(resolve => setTimeout(resolve, 1000));
} }
function init$1() {} function init$1() {}

View file

@ -69,7 +69,7 @@ export function searchSongs(filter) {
} }
export function albumArt(songUrl) { export function albumArt(songUrl) {
return new Promise(resolve => setTimeout(resolve, 3000)); return new Promise(resolve => setTimeout(resolve, 1000));
return null; return null;
} }