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.

Fix text not wrapping in social proof (#7920)

* Fix text not wrapping in social proof

* fix web too

* add max_w_full atom

authored by samuel.fm and committed by

GitHub ac43b666 618c4e4a

+9 -1
+7 -1
src/alf/atoms.ts
··· 70 70 }), 71 71 72 72 /* 73 - * Width 73 + * Width & Height 74 74 */ 75 75 w_full: { 76 76 width: '100%', ··· 81 81 h_full_vh: web({ 82 82 height: '100vh', 83 83 }), 84 + max_w_full: { 85 + maxWidth: '100%', 86 + }, 87 + max_h_full: { 88 + maxHeight: '100%', 89 + }, 84 90 85 91 /** 86 92 * Used for the outermost components on screens, to ensure that they can fill
+2
src/components/KnownFollowers.tsx
··· 127 127 onPress={onLinkPress} 128 128 to={makeProfileLink(profile, 'known-followers')} 129 129 style={[ 130 + a.max_w_full, 130 131 a.flex_row, 131 132 minimal ? a.gap_sm : a.gap_md, 132 133 a.align_center, ··· 171 172 172 173 <Text 173 174 style={[ 175 + a.flex_shrink, 174 176 textStyle, 175 177 hovered && { 176 178 textDecorationLine: 'underline',