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); + }