This commit is contained in:
Daniel Cortes
2020-06-04 05:10:24 -04:00
parent 56c927d2ea
commit c050d39586
3 changed files with 96 additions and 14 deletions

View File

@@ -127,7 +127,7 @@ ul.entity_list {
display: flex;
flex-direction: column;
li.artist, li.disc {
li.artist, li.disc, li.song {
border: 1px var(--gray-2) solid;
&:not(:first-child) {
@@ -143,6 +143,7 @@ ul.entity_list {
text-decoration: none;
color: var(--black);
align-items: center;
height: 100%;
.description {
display: flex;
@@ -160,24 +161,26 @@ ul.entity_list {
}
li.artist {
a {
height: 4rem;
}
height: 4rem;
}
li.disc {
height: 14rem;
a {
height: 14rem;
.coverart {
object-fit: cover;
width: 200px;
height: 200px;
margin: 1rem;
border: 1px solid var(--gray-2)
}
}
}
li.song {
height: 4rem;
}
}