Skip to content

Commit

Permalink
fix: add color to warning background, closes #4600
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Dec 4, 2023
1 parent fc2e08a commit cdcc597
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/pages/receive/components/receive-btc-warning.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ import { Flex, styled } from 'leather-styles/jsx';

export function ReceiveBtcModalWarning({ message }: { message: string }) {
return (
<Flex justifyContent="center" bg="yellow.100" minHeight="48px" p="space.05" width="100%">
<Flex
justifyContent="center"
bg="warning.background"
minHeight="48px"
p="space.05"
width="100%"
>
<styled.span textStyle="label.02">{message}</styled.span>
</Flex>
);
Expand Down

0 comments on commit cdcc597

Please sign in to comment.