Skip to content

Commit

Permalink
86dtf33ru - Neon3 - Color Heading Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoak25 committed May 8, 2024
1 parent 9b889c8 commit 62996ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/src/layouts/EndModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const EndModalLayout = ({
<div className="flex items-center gap-x-2.5">
{headingIcon &&
cloneElement(headingIcon, {
className: StyleHelper.mergeStyles('w-6 h-6 text-blue', headingIcon.props?.className ?? ''),
className: StyleHelper.mergeStyles('w-6 h-6 text-neon', headingIcon.props?.className ?? ''),
})}
{heading && <h2 className="text-sm">{heading}</h2>}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const YourAddressTabContent = forwardRef<HTMLDivElement>((_, ref) => {
title={t('receivingAccountTitle')}
modalTitle={t('selectAccountModal.title')}
buttonLabel={t('selectAccountModal.selectReceivingAccount')}
leftIcon={<TbStepInto />}
leftIcon={<TbStepInto className="text-neon" />}
/>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/routes/pages/Send/SendPageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export const SendPageContent = ({ account }: TProps) => {
title={t('sourceAccount')}
modalTitle={t('selectAccountModal.title')}
buttonLabel={t('selectAccountModal.selectSourceAccount')}
leftIcon={<TbStepOut />}
leftIcon={<TbStepOut className="text-neon" />}
/>

<Separator />
Expand Down

0 comments on commit 62996ec

Please sign in to comment.