Skip to content

Commit

Permalink
refactor: set full width for music player
Browse files Browse the repository at this point in the history
  • Loading branch information
rzashakeri committed Jul 4, 2022
1 parent 26f289d commit b490eb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions post/templates/post/components/audio_component.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div class="music-player flex flex-col gap-4 w-full">
<div class="music-player flex flex-col gap-4 w-full ">
<p class="player-title text-xl font-bold ml-3">{{ post.audio.name }}
- {{ post.audio.artist }}</p>
<div class="player-body flex justify-between w-full">
<div id="waveform" class="audio-player flex gap-3 w-full "
<div id="waveform" class="audio-player flex gap-3 w-full"
src="http://127.0.0.1:8000/media/{{ post.audio.file }}">
<button id="playButton" class="playbackBtn self-center w-12 h-12">
<img
Expand All @@ -14,7 +14,7 @@
</button>
</div>
</div>
<div class="controls flex justify-between">
<div class="controls flex justify-between w-full">
<div class="volume flex gap-3 items-center ml-3">
<img
id="volumeIcon"
Expand Down

0 comments on commit b490eb9

Please sign in to comment.