diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-03-19 11:38:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 11:38:17 -0700 |
commit | c9c3bd98b7418845c4e7ee64060a4362eb2e3128 (patch) | |
tree | 28a544ed1f2ed55722afbc12476fa5d1ab515b7a /src/components/ReportDialog/SelectReportOptionView.tsx | |
parent | 9277282e6c9ea90003a4ee583c862af6e96b5433 (diff) | |
download | voidsky-c9c3bd98b7418845c4e7ee64060a4362eb2e3128.tar.zst |
Rework the labeler selection step of the report flow (#3269)
* Rework the labeler selection step of the report flow * Fix: use gtMobile * Use primitives, fix avatar * Spacing tweaks * Show handle instead of description --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/components/ReportDialog/SelectReportOptionView.tsx')
-rw-r--r-- | src/components/ReportDialog/SelectReportOptionView.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/ReportDialog/SelectReportOptionView.tsx b/src/components/ReportDialog/SelectReportOptionView.tsx index 037a62fce..bacf5a867 100644 --- a/src/components/ReportDialog/SelectReportOptionView.tsx +++ b/src/components/ReportDialog/SelectReportOptionView.tsx @@ -9,7 +9,7 @@ import {DMCA_LINK} from '#/components/ReportDialog/const' import {Link} from '#/components/Link' export {useDialogControl as useReportDialogControl} from '#/components/Dialog' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a, useTheme, useBreakpoints} from '#/alf' import {Text} from '#/components/Typography' import { Button, @@ -35,6 +35,7 @@ export function SelectReportOptionView({ }) { const t = useTheme() const {_} = useLingui() + const {gtMobile} = useBreakpoints() const allReportOptions = useReportOptions() const reportOptions = allReportOptions[props.params.type] @@ -76,7 +77,7 @@ export function SelectReportOptionView({ </Button> ) : null} - <View style={[a.justify_center, a.gap_sm]}> + <View style={[a.justify_center, gtMobile ? a.gap_sm : a.gap_xs]}> <Text style={[a.text_2xl, a.font_bold]}>{i18n.title}</Text> <Text style={[a.text_md, t.atoms.text_contrast_medium]}> {i18n.description} |