Skip to content

Commit

Permalink
chore: update font and color for receive asset
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Nov 22, 2023
1 parent b387903 commit 800fa3e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/app/pages/receive/components/receive-items.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ interface ReceiveItemListProps {
export function ReceiveItemList({ children, title }: ReceiveItemListProps) {
return (
<>
{title && <styled.span textStyle="">{title}</styled.span>}
<Divider mt="space.02" />
{title && (
<styled.span color="accent.text-subdued" textStyle="caption.01">
{title}
</styled.span>
)}
<Divider mt="space.02" color="accent.border-default" />
<Stack gap="space.05" mb="space.08" mt="space.05">
{children}
</Stack>
Expand Down

0 comments on commit 800fa3e

Please sign in to comment.