diff --git a/src/controllers/itemDetails/index.html b/src/controllers/itemDetails/index.html index 036d97670..d9a7c353f 100644 --- a/src/controllers/itemDetails/index.html +++ b/src/controllers/itemDetails/index.html @@ -202,7 +202,7 @@

${Lyrics}

-
+
diff --git a/src/controllers/lyrics.html b/src/controllers/lyrics.html index 79b923678..bf8ac99eb 100644 --- a/src/controllers/lyrics.html +++ b/src/controllers/lyrics.html @@ -1,6 +1,6 @@
-
+
diff --git a/src/controllers/lyrics.js b/src/controllers/lyrics.js index 74f674140..0466b34f5 100644 --- a/src/controllers/lyrics.js +++ b/src/controllers/lyrics.js @@ -32,7 +32,7 @@ function lyricHtmlReducer(htmlAccumulator, lyric, index) { const lyricTime = typeof lyric.Start !== 'undefined' ? `data-lyrictime="${lyric.Start}"` : ''; htmlAccumulator += `<${elem} class="lyricsLine ${classes.join(' ')}" id="lyricPosition${index}" ${lyricTime}> - ${escapeHtml(lyric.Text)} + ${escapeHtml(lyric.Text)} `; return htmlAccumulator; diff --git a/src/styles/librarybrowser.scss b/src/styles/librarybrowser.scss index 164a2dc8f..1c48779b9 100644 --- a/src/styles/librarybrowser.scss +++ b/src/styles/librarybrowser.scss @@ -1492,3 +1492,8 @@ div:not(.sectionTitleContainer-cards) > .sectionTitle-cards { padding-left: 0.8em; padding-right: 0.8em; } + +.lyricsLineContainer { + margin: 0; + width: fit-content; +}