Skip to content

Commit

Permalink
Fix: Moved progressbar above player controls
Browse files Browse the repository at this point in the history
  • Loading branch information
jessej-samuel committed Jan 8, 2022
1 parent 39f55f6 commit fe34664
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/Player.js
Expand Up @@ -83,6 +83,7 @@ const Player = ({

return (
<div id="player">
<SongTime />
<div
className="control"
id={shuffled ? `active` : null}
Expand All @@ -107,7 +108,7 @@ const Player = ({
{forwardsSvg}
</div>
<Progress />
<SongTime />


<audio
id="main-track"
Expand Down
2 changes: 1 addition & 1 deletion src/index.css
Expand Up @@ -25,7 +25,7 @@ code {
background-color: rgb(15, 23, 42);
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(8, 1fr) 4px;
grid-template-rows: repeat(8, 1fr);
}

#active {
Expand Down

1 comment on commit fe34664

@vercel
Copy link

@vercel vercel bot commented on fe34664 Jan 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.