@@ -34,15 +34,15 @@ const StreamHero = ({ bgColors, filteredStreamData }: StreamHeroProps) => {
34
34
{ contextScreenWidth === 'DESKTOP' ? (
35
35
< article
36
36
className = "flex w-4/5 max-w-6xl m-auto p-4 my-4 items-center gap-4
37
- bg-gradient-to-b from-zinc-700 to-zinc-700/80 rounded-lg"
37
+ bg-gradient-to-b from-zinc-700 to-zinc-700/80 shadow-zinc-900 shadow-lg rounded-lg"
38
38
data-testid = "streamfeed-article-0"
39
39
>
40
40
< div className = { `w-1/2 ${ bgColors [ 0 ] } aspect-video` } >
41
41
< StreamPlayer
42
42
channel = { filteredStreamData . data [ 0 ] . user_login }
43
43
/>
44
44
</ div >
45
- < section className = "flex items-center gap-x-2 w-1/2 bg-zinc-800 p-4 rounded-xl" >
45
+ < section className = "flex items-center gap-x-2 w-1/2 bg-zinc-800 shadow-zinc-800/75 shadow-md p-4 rounded-xl" >
46
46
< StreamProfilePicture
47
47
isHeroPicture
48
48
user_id = { filteredStreamData . data [ 0 ] . user_id }
@@ -79,7 +79,7 @@ const StreamHero = ({ bgColors, filteredStreamData }: StreamHeroProps) => {
79
79
) : contextScreenWidth === 'TABLET' ? (
80
80
< article
81
81
className = "flex flex-col w-full m-auto p-4 my-4 gap-2
82
- bg-gradient-to-b from-zinc-700 to-zinc-700/80 rounded-lg"
82
+ bg-gradient-to-b from-zinc-700 to-zinc-700/80 shadow-zinc-900 shadow-lg rounded-lg"
83
83
data-testid = "streamfeed-article-0"
84
84
>
85
85
< div className = "flex items-center gap-4" >
@@ -88,7 +88,7 @@ const StreamHero = ({ bgColors, filteredStreamData }: StreamHeroProps) => {
88
88
channel = { filteredStreamData . data [ 0 ] . user_login }
89
89
/>
90
90
</ div >
91
- < section className = "flex items-center gap-x-2 w-1/2 bg-zinc-800 p-4 rounded-xl" >
91
+ < section className = "flex items-center gap-x-2 w-1/2 bg-zinc-800 shadow-zinc-800/75 shadow-md p-4 rounded-xl" >
92
92
< StreamProfilePicture
93
93
isHeroPicture
94
94
user_id = { filteredStreamData . data [ 0 ] . user_id }
@@ -127,16 +127,16 @@ const StreamHero = ({ bgColors, filteredStreamData }: StreamHeroProps) => {
127
127
</ article >
128
128
) : (
129
129
< article
130
- className = "flex flex-col m-auto p-4 my-4 gap-2
131
- bg-gradient-to-b from-zinc-700 to-zinc-700/80 rounded-lg"
130
+ className = "flex flex-col m-auto p-4 my-4 gap-4
131
+ bg-gradient-to-b from-zinc-700 to-zinc-700/80 shadow-zinc-900 shadow-lg rounded-lg"
132
132
data-testid = "streamfeed-article-0"
133
133
>
134
134
< div className = { `w-full ${ bgColors [ 0 ] } aspect-video` } >
135
135
< StreamPlayer
136
136
channel = { filteredStreamData . data [ 0 ] . user_login }
137
137
/>
138
138
</ div >
139
- < section className = "flex items-center gap-x-2 bg-zinc-800 p-4 rounded-xl" >
139
+ < section className = "flex items-center gap-x-2 bg-zinc-800 shadow-zinc-800/75 shadow-md p-4 rounded-xl" >
140
140
< StreamProfilePicture
141
141
isHeroPicture
142
142
user_id = { filteredStreamData . data [ 0 ] . user_id }
0 commit comments