diff options
author | Eric Bailey <git@esb.lol> | 2024-05-20 16:41:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 16:41:03 -0500 |
commit | e98bf6521bfeb3b18df284963bfa3b4c20a89727 (patch) | |
tree | a17743f7d45c3b9c6d622c5acb856a2edd8cc2ed /src | |
parent | d3d2dc8ad46890dda945f3401375529f1f8a8d02 (diff) | |
download | voidsky-e98bf6521bfeb3b18df284963bfa3b4c20a89727.tar.zst |
[🐴 Tweak appeal button styles (#4128)
* Tweak styles * Tweak copy
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Messages/Conversation/ChatDisabled.tsx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/screens/Messages/Conversation/ChatDisabled.tsx b/src/screens/Messages/Conversation/ChatDisabled.tsx index faff95963..6665dd171 100644 --- a/src/screens/Messages/Conversation/ChatDisabled.tsx +++ b/src/screens/Messages/Conversation/ChatDisabled.tsx @@ -18,7 +18,8 @@ export function ChatDisabled() { const t = useTheme() return ( <View style={[a.p_md]}> - <View style={[a.p_xl, a.rounded_md, t.atoms.bg_contrast_25]}> + <View + style={[a.align_start, a.p_xl, a.rounded_md, t.atoms.bg_contrast_25]}> <Text style={[a.text_md, a.font_bold, a.pb_sm, t.atoms.text_contrast_high]}> <Trans>Your chats have been disabled</Trans> @@ -43,7 +44,7 @@ function AppealDialog() { <> <Button testID="appealDisabledChatBtn" - variant="solid" + variant="ghost" color="secondary" size="small" onPress={control.open} @@ -100,9 +101,7 @@ function DialogInner() { <Trans>Appeal this decision</Trans> </Text> <Text style={[a.text_md, a.leading_snug]}> - <Trans> - This appeal will be sent to the Bluesky moderation service. - </Trans> + <Trans>This appeal will be sent to Bluesky's moderation service.</Trans> </Text> <View style={[a.my_md]}> <Dialog.Input |