From 24ed2afae6cb71e8734388de9e6cb40550155228 Mon Sep 17 00:00:00 2001 From: ecco257 <72117210+ecco257@users.noreply.github.com> Date: Fri, 16 Feb 2024 17:37:22 -0500 Subject: [PATCH] Fix formatting of playing vs. delete status of queue items --- style/queue.scss | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/style/queue.scss b/style/queue.scss index 3dca7fc..9e793d9 100644 --- a/style/queue.scss +++ b/style/queue.scss @@ -40,21 +40,30 @@ .queue-song-info { h3 { - margin: 0; /* Remove default margin for heading */ + margin: 0; /* Remove default margin for heading */ + color: #333; /* Adjust text color for song */ } p { - margin: 0; /* Remove default margin for paragraph */ - color: #888; /* Adjust text color for artist */ + margin: 0; /* Remove default margin for paragraph */ + color: #888; /* Adjust text color for artist */ } } } button { background: none; - border: none; - cursor: pointer; - margin-left: auto; + border: none; + cursor: pointer; + margin-left: auto; + } + + p { + color: #333; + font-weight: bold; + margin-left: auto; + background: none; + border: none; } } }