diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-19 12:35:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-19 12:35:33 -0800 |
commit | ed4add707250d6e2b0a770d030a39da676bb6d78 (patch) | |
tree | 4fdc609db15bbf88635c80a882c89c8b05fa20ce /src/screens/Settings/components/ExportCarDialog.tsx | |
parent | 48fd397d46066916dcf1b1df6db847e6bba291b2 (diff) | |
download | voidsky-ed4add707250d6e2b0a770d030a39da676bb6d78.tar.zst |
improve car dialog styles (#7786)
Diffstat (limited to 'src/screens/Settings/components/ExportCarDialog.tsx')
-rw-r--r-- | src/screens/Settings/components/ExportCarDialog.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screens/Settings/components/ExportCarDialog.tsx b/src/screens/Settings/components/ExportCarDialog.tsx index 685707259..edeccd128 100644 --- a/src/screens/Settings/components/ExportCarDialog.tsx +++ b/src/screens/Settings/components/ExportCarDialog.tsx @@ -58,10 +58,12 @@ export function ExportCarDialog({ accessibilityDescribedBy="dialog-description" accessibilityLabelledBy="dialog-title"> <View style={[a.relative, a.gap_lg, a.w_full]}> - <Text nativeID="dialog-title" style={[a.text_2xl, a.font_bold]}> + <Text nativeID="dialog-title" style={[a.text_2xl, a.font_heavy]}> <Trans>Export My Data</Trans> </Text> - <Text nativeID="dialog-description" style={[a.text_sm]}> + <Text + nativeID="dialog-description" + style={[a.text_sm, a.leading_normal, t.atoms.text_contrast_high]}> <Trans> Your account repository, containing all public data records, can be downloaded as a "CAR" file. This file does not include media |