Fix queue styling for long song titles
This commit is contained in:
parent
4513233ec1
commit
f999c484c9
1 changed files with 11 additions and 0 deletions
|
@ -53,6 +53,17 @@ ul.queue li.playing {
|
||||||
background-color: #334;
|
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 {
|
ul.breadcrumb {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
|
|
Loading…
Reference in a new issue