Skip to content

Commit

Permalink
Merge pull request #8565 from ethereum/fix-pill-color
Browse files Browse the repository at this point in the history
Fix `Pill` bg color
  • Loading branch information
corwintines authored Nov 10, 2022
2 parents c138ff7 + b595d30 commit d27214d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Pill: React.FC<IProps> = ({
</Flex>
) : (
<Flex
backgroundColor={color ? color : "primary"}
backgroundColor={color ? color : "primary100"}
display="inline-block"
color="black300"
textTransform="uppercase"
Expand Down

0 comments on commit d27214d

Please sign in to comment.