From 5757a768d5775193cabafba2f610a7bd6b762514 Mon Sep 17 00:00:00 2001 From: "Troll (Hermes Agent)" Date: Mon, 3 Aug 2026 18:16:00 +0000 Subject: [PATCH] ui: tighten lyrics spacing on player page --- templates/player.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/templates/player.html b/templates/player.html index f40d7ea..cadb356 100644 --- a/templates/player.html +++ b/templates/player.html @@ -86,7 +86,7 @@ padding:1rem 1.5rem; margin:1rem 0; white-space:pre-wrap; - line-height:1.7; + line-height:1.5; font-size:1.05rem; } .lyrics h2{ @@ -98,7 +98,11 @@ color:#60a5fa; font-weight:700; display:block; - margin-top:1rem; + margin-top:.6rem; + } + .lyrics .lyric-line{ + display:block; + margin:.1rem 0; } @@ -113,10 +117,9 @@ {% for line in req.suno_lyrics.splitlines() %} {% if line.startswith('[') and line.endswith(']') %} {{ line }} - {% else %} - {{ line }} + {% elif line.strip() %} + {{ line }} {% endif %} - {% if not loop.last %}
{% endif %} {% endfor %} {% endif %}