Skip to content

Commit

Permalink
fix: πŸ› Improved text overflow handling on mobile screens
Browse files Browse the repository at this point in the history
This is only playlist items
  • Loading branch information
EricLambrecht committed Oct 25, 2019
1 parent 088e590 commit 1929416
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/editor/EditorPlaylistItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,15 @@ export default {
font-size: var(--track-item-song-font-size);
line-height: var(--track-item-song-line-height);
color: var(--color-default);
overflow: hidden;
text-overflow: ellipsis;
}
.artist {
font-size: var(--track-item-artist-font-size);
line-height: var(--track-item-artist-line-height);
color: var(--color-grey);
overflow: hidden;
text-overflow: ellipsis;
}
}
Expand All @@ -187,6 +191,8 @@ export default {
font-weight: 700;
color: var(--color-grey);
font-size: 14px;
flex-shrink: 0;
padding: 10px 0 10px 10px;
}
.track-menu {
Expand Down

0 comments on commit 1929416

Please sign in to comment.