Skip to content

Commit

Permalink
Issue #PS-1521 fix: Upcoming Extra Sessions cards copy UI implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas143shinde committed Jul 26, 2024
1 parent b4ac961 commit d0437cd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/SessionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const SessionsCard: React.FC<SessionsCardProps> = ({ data, children }) => {
<Box
sx={{
fontSize: '14px',
color: '#0D599E',
color: theme.palette.secondary.main,
fontWeight: '500',
whiteSpace: 'nowrap',
textOverflow: 'ellipsis',
Expand All @@ -88,7 +88,11 @@ const SessionsCard: React.FC<SessionsCardProps> = ({ data, children }) => {
{data?.url}
</Box>
<ContentCopyIcon
sx={{ fontSize: '18px', color: '#0D599E', cursor: 'pointer' }}
sx={{
fontSize: '18px',
color: theme.palette.secondary.main,
cursor: 'pointer',
}}
/>
</Box>
<CenterSessionModal
Expand Down

0 comments on commit d0437cd

Please sign in to comment.