mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Eric Bailey
Khuddite
and committed by
GitHub
5f7caf30 9640f08b

+4 -5
+4 -5
src/components/moderation/LabelPreference.tsx
··· 22 22 <View 23 23 style={[ 24 24 a.flex_row, 25 - a.gap_md, 25 + a.gap_sm, 26 26 a.px_lg, 27 27 a.py_lg, 28 28 a.justify_between, ··· 74 74 hideLabel?: string 75 75 }) { 76 76 const {_} = useLingui() 77 - const {gtPhone} = useBreakpoints() 78 77 79 78 return ( 80 - <View style={[{minHeight: 35}, gtPhone ? undefined : a.w_full]}> 79 + <View style={[{minHeight: 35}, a.w_full]}> 81 80 <ToggleButton.Group 82 81 label={_( 83 82 msg`Configure content filtering setting for category: ${name}`, ··· 259 258 </Content> 260 259 261 260 {showConfig && ( 262 - <View style={[gtPhone ? undefined : a.w_full]}> 261 + <> 263 262 {cantConfigure ? ( 264 263 <View 265 264 style={[ ··· 290 289 hideLabel={hideLabel} 291 290 /> 292 291 )} 293 - </View> 292 + </> 294 293 )} 295 294 </Outer> 296 295 )