Skip to content

Commit 9587c28

Browse files
committed
fixes
1 parent 776478f commit 9587c28

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

web/app/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export default function Home() {
5656
<div className="flex flex-col h-screen">
5757
<div className="flex flex-1 overflow-hidden pt-16">
5858
<Sidebar />
59+
<div className="h-full w-px bg-neutral-800" />
5960
<div className="flex-1 bg-black p-5 text-white overflow-y-auto">
6061
<h1 className="text-2xl mb-4">Trending Now</h1>
6162
{error && <p className="text-red-500">Error: {error}</p>}

web/components/Album.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export default function Album({ id }: { id: string }) {
6464
<div className="flex flex-col h-screen">
6565
<div className="flex flex-1 overflow-hidden pt-16">
6666
<Sidebar />
67+
<div className="h-full w-px bg-neutral-800" />
6768
<div className="flex-1 bg-black p-5 text-white overflow-y-auto">
6869
<h1 className="text-2xl mb-4">Album</h1>
6970
{error && <p className="text-red-500">Error: {error}</p>}

web/components/Artist.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export default function Artist({ id }: { id: string }) {
6969
<div className="flex flex-col h-screen">
7070
<div className="flex flex-1 overflow-hidden pt-16">
7171
<Sidebar />
72+
<div className="h-full w-px bg-neutral-800" />
7273
<div className="flex-1 bg-black p-5 text-white overflow-y-auto">
7374
<div className="flex items-center gap-4 mb-6">
7475
{artistImage && (

web/components/Playlist.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export default function Playlist({ id }: { id: string }) {
6565
<div className="flex flex-col h-screen">
6666
<div className="flex flex-1 overflow-hidden pt-16">
6767
<Sidebar />
68+
<div className="h-full w-px bg-neutral-800" />
6869
<div className="flex-1 bg-black p-5 text-white overflow-y-auto">
6970
<h1 className="text-2xl mb-4">Playlist</h1>
7071
{error && <p className="text-red-500">Error: {error}</p>}

0 commit comments

Comments
 (0)