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 { .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 {