File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ const Sidebar = ({
190
190
general : [
191
191
{ location : '/' , text : 'Home' } ,
192
192
{ location : '/schedule' , text : 'Schedule' } ,
193
- { location : '/livestream' , text : 'Livestream' } ,
193
+ // { location: '/livestream', text: 'Livestream' },
194
194
{ location : '/rewards' , text : 'Rewards' } ,
195
195
{ location : '/sponsors' , text : 'Sponsors' } ,
196
196
{ location : '/social' , text : 'Portal Profiles' } ,
Original file line number Diff line number Diff line change @@ -314,13 +314,16 @@ const DateText = styled.p`
314
314
const StyledTrashIcon = styled ( TrashIcon ) `
315
315
width: 25px;
316
316
height: 25px;
317
+ position: relative;
318
+ z-index: 2;
317
319
318
320
& path {
319
321
fill: ${ p => p . theme . colors . text } ;
320
322
}
321
323
`
322
324
323
325
const Profile = styled . div `
326
+ position: relative;
324
327
display: flex;
325
328
justify-content: space-between;
326
329
align-items: center;
@@ -337,6 +340,7 @@ const Profile = styled.div`
337
340
338
341
&:hover ${ Username } {
339
342
color: ${ p => p . theme . colors . button . primary . text } ;
343
+ text-decoration: underline;
340
344
}
341
345
342
346
&:hover ${ DateText } {
@@ -354,6 +358,12 @@ const Profile = styled.div`
354
358
}
355
359
`
356
360
361
+ const ProfileLink = styled . a `
362
+ position: absolute;
363
+ inset: 0;
364
+ z-index: 1;
365
+ `
366
+
357
367
const Text = styled . p `
358
368
font-size: 18px;
359
369
font-weight: 500;
@@ -474,9 +484,8 @@ const ViewSocial = ({
474
484
< RecentlyViewedContainer >
475
485
{ recentlyViewedProfiles . map ( ( profile , index ) => (
476
486
< Profile key = { index } >
477
- < Username href = { `/app/${ activeHackathon } /social/${ profile . profileId } ` } >
478
- { profile . name }
479
- </ Username >
487
+ < ProfileLink href = { `/app/${ activeHackathon } /social/${ profile . profileId } ` } />
488
+ < Username > { profile . name } </ Username >
480
489
< IconSection >
481
490
< DateText >
482
491
{ new Date ( profile . viewedAt . seconds * 1000 ) . toLocaleDateString ( ) }
You can’t perform that action at this time.
0 commit comments