style tweaks

This commit is contained in:
Samuel Newman
2024-11-29 14:22:24 +00:00
parent bef3a1ce59
commit 3210a4b9af
@@ -197,7 +197,7 @@ function CreateDialogInner({passwords}: {passwords: string[]}) {
Use this to sign into the other app along with your handle.
</Trans>
</Text>
<View style={[a.flex_row, a.align_center, a.gap_sm, a.w_full]}>
<View style={[a.flex_row, a.align_stretch, a.gap_sm, a.w_full]}>
<View style={[a.flex_grow, a.flex_shrink_0]}>
<CopyButton
value={data.password}
@@ -216,8 +216,7 @@ function CreateDialogInner({passwords}: {passwords: string[]}) {
size="small"
variant="ghost"
color="secondary"
onPress={() => setShowPassword(!showPassword)}
style={[a.flex_shrink]}>
onPress={() => setShowPassword(!showPassword)}>
<ButtonIcon icon={EyeIcon} />
</Button>
</View>