diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-10-28 18:28:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 16:28:54 +0000 |
commit | 1c992beff6f9a30b9ecd25f6b9b7ad4f00459222 (patch) | |
tree | 3122210fb0f15ef1bacd70b0f297a94b6cc2f4fc /src/components/StarterPack | |
parent | e652b2d7b135d114fcaf4750a17cc04a51911820 (diff) | |
download | voidsky-1c992beff6f9a30b9ecd25f6b9b7ad4f00459222.tar.zst |
flex_1 text container (#5891)
Diffstat (limited to 'src/components/StarterPack')
-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 ce458bc84..29cccecc8 100644 --- a/src/components/StarterPack/StarterPackCard.tsx +++ b/src/components/StarterPack/StarterPackCard.tsx @@ -65,7 +65,7 @@ export function Card({ <View style={[a.w_full, a.gap_md]}> <View style={[a.flex_row, a.gap_sm]}> {!noIcon ? <StarterPack width={40} gradient="sky" /> : null} - <View> + <View style={[a.flex_1]}> <Text emoji style={[a.text_md, a.font_bold, a.leading_snug]}> {record.name} </Text> |