Skip to content

Commit ef20cb1

Browse files
authored
Merge pull request #150 from sipe-team/feat/5th-recruit
style: svg 아이콘 색상 변경
2 parents dc2cb70 + 61eabfa commit ef20cb1

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

src/components/molecules/Table/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ function TableData({ data, isApplicant }: TableDataProps) {
5858
justify="space-between"
5959
>
6060
{isApplicant ? (
61-
<CheckCircleIcon />
61+
// 이전 check_circle.svg 색상은: --cyan 이었음
62+
<CheckCircleIcon style={{ color: 'var(--primary)' }} />
6263
) : (
6364
<Typography color={'var(--gray700)'} size={14}>
6465
{data.recurring_date}

src/components/organisms/people/UserCard/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ function UserCard({
6161
<p className={styles.part}>{part}</p>
6262
{isOrganizer && (
6363
<p className={styles.organizer}>
64-
Organizer <OrganizerIcon className={styles.organizerMark} />
64+
Organizer{' '}
65+
<OrganizerIcon
66+
className={styles.organizerMark}
67+
style={{ color: 'var(--primary)' }}
68+
/>
6569
</p>
6670
)}
6771
</section>

src/libs/assets/icons/check_circle.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

src/styles/variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
--gray800: #edf2f7;
1616
--gray900: #f7fafc;
1717
--white: #ffffff;
18+
// 이전 check_circle.svg, organizer.svg 색상
19+
--cyan: #00ffff;
1820

1921
/* typography */
2022
--font-weight-black: 900;

0 commit comments

Comments
 (0)