File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed
src/apps/profiles/src/member-profile
work-expirence/WorkExpirenceCard Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1414 position : absolute ;
1515 right : 0 ;
1616 top : 0 ;
17- color : $turq-120 ;
17+ color : $tc-white ;
1818
1919 svg {
2020 width : 70px ;
2121 height : 70px ;
22+ fill : $turq-120 ;
23+
24+ path {
25+ fill : $turq-120 ;
26+ }
2227 }
2328 }
2429
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import {
1010 UserTraitIds ,
1111 UserTraits ,
1212} from '~/libs/core'
13- import { Button , IconSolid } from '~/libs/ui'
13+ import { Button , IconOutline } from '~/libs/ui'
1414
1515import { EditMemberPropertyBtn } from '../../components'
1616import { EDIT_MODE_QUERY_PARAM , profileEditModes } from '../../config'
@@ -117,7 +117,7 @@ const ProfileHeader: FC<ProfileHeaderProps> = (props: ProfileHeaderProps) => {
117117 {
118118 isMemberVerified ? (
119119 < div className = { styles . verifiedBadge } >
120- < IconSolid . CheckCircleIcon />
120+ < IconOutline . CheckCircleIcon />
121121 </ div >
122122 ) : undefined
123123 }
Original file line number Diff line number Diff line change @@ -15,15 +15,11 @@ const WorkExpirenceCard: FC<WorkExpirenceCardProps> = (props: WorkExpirenceCardP
1515 < div className = { styles . workExpirenceCardHeaderLeft } >
1616 < p className = 'body-main-bold' >
1717 { props . work . position }
18- ,
19- { ' ' }
20- { props . work . industry }
18+ { props . work . industry ? `, ${ props . work . industry } ` : undefined }
2119 </ p >
2220 < p >
2321 { props . work . company }
24- ,
25- { ' ' }
26- { props . work . cityTown }
22+ { props . work . cityTown ? `, ${ props . work . cityTown } ` : undefined }
2723 </ p >
2824 </ div >
2925 {
You can’t perform that action at this time.
0 commit comments