From 5dd9422745edd48c3d534312f36f857bd435cb38 Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sun, 23 Feb 2025 12:11:11 -0500 Subject: [PATCH] Fix spacing in song lists on mobile --- static/styles.css | 3 ++- templates/base.html | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/static/styles.css b/static/styles.css index f539dbb..aca252c 100644 --- a/static/styles.css +++ b/static/styles.css @@ -323,7 +323,8 @@ div.song-info { display: flex; flex-wrap: wrap; flex-direction: row; - gap: 10px; + row-gap: 0px; + column-gap: 10px; align-items: center; flex-grow: 1; margin: 5px 0px; diff --git a/templates/base.html b/templates/base.html index d31dea2..18cfc93 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,7 +2,7 @@ {% block title %}{% endblock %} - + -- 2.39.5