diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-10-29 22:19:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-29 22:19:28 +0000 |
commit | c92f6d5f88c2313eec9ea18fba20d92af9e4f38b (patch) | |
tree | 20a52a40f011c7c6da1aa2c93637714afda38298 /src/components/StarterPack/StarterPackCard.tsx | |
parent | d74aaf904b5ee145fc98ad19064e855bc4d40778 (diff) | |
download | voidsky-c92f6d5f88c2313eec9ea18fba20d92af9e4f38b.tar.zst |
width full on text container (#6007)
Diffstat (limited to 'src/components/StarterPack/StarterPackCard.tsx')
-rw-r--r-- | src/components/StarterPack/StarterPackCard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/StarterPack/StarterPackCard.tsx b/src/components/StarterPack/StarterPackCard.tsx index 0f24566b6..22e0a155a 100644 --- a/src/components/StarterPack/StarterPackCard.tsx +++ b/src/components/StarterPack/StarterPackCard.tsx @@ -63,7 +63,7 @@ export function Card({ return ( <View style={[a.w_full, a.gap_md]}> - <View style={[a.flex_row, a.gap_sm]}> + <View style={[a.flex_row, a.gap_sm, a.w_full]}> {!noIcon ? <StarterPack width={40} gradient="sky" /> : null} <View style={[a.flex_1]}> <Text |