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 {
|
.art {
|
||||||
margin-right: var(--icon-spacing);
|
.icon, img {
|
||||||
.icon, img { display: block; }
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
|
@ -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() {}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue