Skip to content

Commit

Permalink
Fix red icons + badge hover color in popup menu [C-3799] [C-3798] (#7532
Browse files Browse the repository at this point in the history
)

Co-authored-by: Nikki Kang <kangaroo233@gmail.com>
  • Loading branch information
nicoback2 and nicoback authored Feb 9, 2024
1 parent 225fe2c commit 24defc5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,8 @@
.item:hover .usdcPill path {
fill: #2775ca;
}

.item .audioPill path,
.item:hover .audioPill path {
fill: revert-layer;
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const ProfileTopTags = () => {
return (
<div>
<div className={styles.tagsTitleContainer}>
<IconTrending className={styles.topTagsIcon} />
<IconTrending color='default' className={styles.topTagsIcon} />
<span className={styles.tagsTitleText}>{messages.topTags}</span>
<span className={styles.tagsLine} />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
height: 20px;
width: 20px;
margin-right: var(--unit-4);
color: var(--neutral-light-4);
}

.input {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const DatePickerField = (props: DatePickerFieldProps) => {
className={styles.datePickerField}
onClick={() => setIsFocused(true)}
>
<IconCalendarMonth className={styles.iconCalendar} />
<IconCalendarMonth color='subdued' className={styles.iconCalendar} />
<div>
<div className={styles.label}>{label}</div>
<input
Expand Down

0 comments on commit 24defc5

Please sign in to comment.