Fix queue styling for long song titles
This commit is contained in:
parent
4513233ec1
commit
f999c484c9
|
@ -53,6 +53,17 @@ ul.queue li.playing {
|
|||
background-color: #334;
|
||||
}
|
||||
|
||||
.queue .metadata {
|
||||
flex: 1;
|
||||
}
|
||||
.queue .song__name {
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2; /* number of lines to show */
|
||||
line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
ul.breadcrumb {
|
||||
display: flex;
|
||||
margin-bottom: 1rem;
|
||||
|
|
Loading…
Reference in New Issue