Skip to content

Commit

Permalink
fix(dcellar-web-ui): fix the background color of the renewal notifica…
Browse files Browse the repository at this point in the history
…tion bar
  • Loading branch information
devinxl committed Oct 10, 2024
1 parent 1d66e37 commit 5845c53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const RenewalNotification = ({ address }: RenewalNotificationProps) => {
<Flex
key={index}
color={item.type === 'danger' ? '#CA300E' : 'readable.label-normal'}
bgColor={item.type === 'danger' ? 'rgba(238, 57, 17, 0.1)' : 'opacity3'}
bgColor={item.type === 'danger' ? 'rgba(238, 57, 17, 0.1)' : 'opacity5'}
borderRadius={4}
padding={'8px 12px'}
gap={12}
Expand Down

0 comments on commit 5845c53

Please sign in to comment.