diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-01-24 17:50:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 09:50:39 -0800 |
commit | 9ff74ff30ac2d9e9bf461267a408442e616882c2 (patch) | |
tree | 1002ca3fc00fdb6cc4f372fd1a39dc36e440bed2 /src | |
parent | d87c6437158273970a7e44603adc3f5a7ea3fd0b (diff) | |
download | voidsky-9ff74ff30ac2d9e9bf461267a408442e616882c2.tar.zst |
set icon colour to text colour (#2607)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/create/Step1.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/auth/create/Step1.tsx b/src/view/com/auth/create/Step1.tsx index 2ce77cf53..41ec93502 100644 --- a/src/view/com/auth/create/Step1.tsx +++ b/src/view/com/auth/create/Step1.tsx @@ -77,7 +77,7 @@ export function Step1({ accessibilityLabel={_(msg`Select service`)} accessibilityHint={_(msg`Sets server for the Bluesky client`)} onPress={onPressSelectService}> - <FontAwesomeIcon icon="server" size={21} /> + <FontAwesomeIcon icon="server" size={21} color={pal.colors.text} /> </Button> </View> </StepHeader> |