File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
frontend/src/app/members/[memberKey] Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ const UserDetailsPage: React.FC = () => {
185
185
}
186
186
187
187
const UserSummary = ( ) => (
188
- < div className = "flex flex-col lg:flex-row items-start " >
188
+ < div className = "flex flex-col items-start lg:flex-row" >
189
189
< div className = "mb-4 flex-shrink-0 self-center lg:mr-6 lg:mb-0 lg:self-start" >
190
190
< Image
191
191
width = { 200 }
@@ -195,16 +195,16 @@ const UserDetailsPage: React.FC = () => {
195
195
alt = { user ?. name || user ?. login || 'User Avatar' }
196
196
/>
197
197
</ div >
198
- < div className = "flex flex-1 flex-col w-full " >
199
- < div className = "mb-0 lg:mb-4 lg:ml-[26px] text-center lg:text-left" >
198
+ < div className = "flex w-full flex-1 flex-col" >
199
+ < div className = "mb-0 text-center lg:mb-4 lg:ml-[26px] lg:text-left" >
200
200
< Link href = { user ?. url || '#' } className = "text-xl font-bold text-blue-400 hover:underline" >
201
201
@{ user ?. login }
202
202
</ Link >
203
203
< p className = "text-gray-600 dark:text-gray-400" > { formattedBio } </ p >
204
204
</ div >
205
205
206
206
{ ! isPrivateContributor && (
207
- < div className = "hidden lg:block w-full" >
207
+ < div className = "hidden w-full lg:block " >
208
208
< Heatmap />
209
209
</ div >
210
210
) }
You can’t perform that action at this time.
0 commit comments