From a36f1b2dad09e6a16e2cbf1e7c525826fc697f5f Mon Sep 17 00:00:00 2001 From: Nathan Upchurch Date: Sat, 20 Jan 2024 15:12:41 -0600 Subject: [PATCH] Small CSS cleanup --- components/audioPlayer/audioPlayer.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/components/audioPlayer/audioPlayer.js b/components/audioPlayer/audioPlayer.js index 0f91a0e..15f9113 100644 --- a/components/audioPlayer/audioPlayer.js +++ b/components/audioPlayer/audioPlayer.js @@ -6,12 +6,6 @@ template.innerHTML = ` height: 2rem; margin: .5rem; } - .round-corners { - border-radius: 10px; - } - .small-shadow { - box-shadow: 0 4px 8px 0 rgba(0,0,0,.2); - } #audioPlayerContainer { background: var(--background); display: flex; @@ -33,6 +27,13 @@ template.innerHTML = ` object-fit: cover; width: 10rem; } + /* Utilities */ + .round-corners { + border-radius: 10px; + } + .small-shadow { + box-shadow: 0 4px 8px 0 rgba(0,0,0,.2); + }