ソースを参照

refactor(SongItem): Allow title to wrap to a 2nd line if no artists

Owen Diffey 2 年 前
コミット
7fd5f787f4
1 ファイル変更9 行追加2 行削除
  1. 9 2
      frontend/src/components/SongItem.vue

+ 9 - 2
frontend/src/components/SongItem.vue

@@ -13,8 +13,15 @@
 					<h4
 						class="item-title"
 						:style="
-							song.artists && song.artists.length < 1
-								? { fontSize: '16px' }
+							!song.artists ||
+							(song.artists && song.artists.length < 1)
+								? {
+										display: '-webkit-inline-box',
+										fontSize: '16px',
+										whiteSpace: 'normal',
+										'-webkit-box-orient': 'vertical',
+										'-webkit-line-clamp': 2
+								  }
 								: null
 						"
 						:title="song.title"