From a3103a59f57dbabb52d09b53d6ecd57caf5bd795 Mon Sep 17 00:00:00 2001 From: jorbuedo Date: Sat, 12 Oct 2024 11:35:57 +0200 Subject: [PATCH] fix(wallet-mobile): disabled actions label color (#3686) --- .../useCases/TxHistory/ActionsBanner.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx b/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx index b4cbd5ea08..b4a4913773 100644 --- a/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx +++ b/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx @@ -118,7 +118,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => { onLongPress={handleOnLongPressReceive} /> - {strings.receiveLabel} + {strings.receiveLabel} {!meta.isReadOnly && ( @@ -132,7 +132,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => { disabled={disabled} /> - {strings.sendLabel} + {strings.sendLabel} @@ -144,7 +144,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => { disabled={disabled} /> - {strings.swapLabel} + {strings.swapLabel} @@ -156,7 +156,7 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => { disabled={disabled} /> - {strings.exchange} + {strings.exchange} )} @@ -180,7 +180,10 @@ const useStyles = () => { actionLabel: { ...atoms.pt_sm, ...atoms.body_3_sm_medium, - color: color.gray_max, + color: color.text_gray_medium, + }, + disabledLabel: { + color: color.text_gray_low, }, })