Fixed album title overflow.

This commit is contained in:
DebaucheryLibrarian 2021-01-23 23:50:15 +01:00
parent e1b52de7a3
commit 7e52f6d18d
1 changed files with 3 additions and 3 deletions

View File

@ -72,16 +72,16 @@ export default {
}
.album-title {
display: flex;
display: block;
flex-grow: 1;
align-items: center;
justify-content: center;
padding: .5rem 1rem;
padding: 1rem;
margin: 0;
color: var(--text-light);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
}
.close {