Skip to content

Commit

Permalink
Merge pull request #4888 from thematters/fix/more-action-icon
Browse files Browse the repository at this point in the history
fix(moment): revise moment action button color
  • Loading branch information
robertu7 authored Oct 14, 2024
2 parents 34f3f8a + fb68c46 commit f3316be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/Button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ type ButtonTextColor = Extract<
| 'gold'
| 'red'
| 'grey'
| 'greyDark'
| 'greyDarker'
>

Expand Down
4 changes: 4 additions & 0 deletions src/components/Button/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ span.container {
color: var(--color-grey);
}

.textGreyDark {
color: var(--color-grey-dark);
}

.textGreyDarker {
color: var(--color-grey-darker);
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/MomentDigest/DropdownActions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ const BaseDropdownActions = ({
<Button
onClick={openDropdown}
spacing={[8, 8]}
textColor="greyDarker"
textActiveColor="black"
textColor="greyDark"
textActiveColor="green"
aria-label={moreActionText}
aria-haspopup="listbox"
ref={ref}
Expand Down

0 comments on commit f3316be

Please sign in to comment.