Fixed album title overflow.
This commit is contained in:
parent
e1b52de7a3
commit
7e52f6d18d
|
@ -72,16 +72,16 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-title {
|
.album-title {
|
||||||
display: flex;
|
display: block;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
padding: 1rem;
|
||||||
padding: .5rem 1rem;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: var(--text-light);
|
color: var(--text-light);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.close {
|
.close {
|
||||||
|
|
Loading…
Reference in New Issue