Skip to content

Commit

Permalink
Fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
annawng committed Mar 12, 2024
1 parent fc3a909 commit 28d3d78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions components/Collection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const Collection = ({
'GET'
);
const json = await res.json();
console.log(json);
return json.images[0].url;
}

Expand Down
2 changes: 1 addition & 1 deletion components/PlaybackBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const PlaybackBar = ({
return (
<section
className={twMerge(
'flex justify-center sm:justify-between items-center gap-4 py-4 px-6 bg-white/[0.06]',
'flex justify-center sm:justify-between items-center gap-4 py-4 px-6 bg-white/[0.07]',
className
)}
>
Expand Down
2 changes: 1 addition & 1 deletion components/PlaybackControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const PlaybackControls = ({
{disabled ? '-:--' : formatTime(progress)}
</p>
<progress
className='progress h-1'
className='progress h-1 bg-white/[0.3]'
value={duration ? progress / duration : 0}
></progress>
<p className='shrink-0 text-xs text-neutral-400'>
Expand Down

0 comments on commit 28d3d78

Please sign in to comment.