diff options
author | Eric Bailey <git@esb.lol> | 2024-11-13 15:55:19 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 21:55:19 +0000 |
commit | 5f7caf30105569fe02cda2b029d3e6cb1e4e4780 (patch) | |
tree | b37e559fd08e04c04f61f13bfde31159039dd149 /src/components | |
parent | 9640f08b8d708ae071fbf06dfc3a443734f686f1 (diff) | |
download | voidsky-5f7caf30105569fe02cda2b029d3e6cb1e4e4780.tar.zst |
Make `ToggleButton` full width everywhere (#6302)
* Fix 'Show badge' button label being cut off (#6215) * Make em full width --------- Co-authored-by: Khuddite <62555977+khuddite@users.noreply.github.com>
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/moderation/LabelPreference.tsx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/components/moderation/LabelPreference.tsx b/src/components/moderation/LabelPreference.tsx index ecdbcfd25..e6f18f1d6 100644 --- a/src/components/moderation/LabelPreference.tsx +++ b/src/components/moderation/LabelPreference.tsx @@ -22,7 +22,7 @@ export function Outer({children}: React.PropsWithChildren<{}>) { <View style={[ a.flex_row, - a.gap_md, + a.gap_sm, a.px_lg, a.py_lg, a.justify_between, @@ -74,10 +74,9 @@ export function Buttons({ hideLabel?: string }) { const {_} = useLingui() - const {gtPhone} = useBreakpoints() return ( - <View style={[{minHeight: 35}, gtPhone ? undefined : a.w_full]}> + <View style={[{minHeight: 35}, a.w_full]}> <ToggleButton.Group label={_( msg`Configure content filtering setting for category: ${name}`, @@ -259,7 +258,7 @@ export function LabelerLabelPreference({ </Content> {showConfig && ( - <View style={[gtPhone ? undefined : a.w_full]}> + <> {cantConfigure ? ( <View style={[ @@ -290,7 +289,7 @@ export function LabelerLabelPreference({ hideLabel={hideLabel} /> )} - </View> + </> )} </Outer> ) |