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

Tune the feeds page a little more

+24 -17
+24 -17
src/view/screens/Feeds.tsx
··· 639 639 640 640 return ( 641 641 <View 642 - style={[ 643 - a.flex_row, 644 - a.px_md, 645 - a.pt_2xl, 646 - a.gap_md, 647 - isWeb ? a.pb_2xl : a.pb_xl, 648 - a.border_b, 649 - t.atoms.border_contrast_low, 650 - ]}> 642 + style={ 643 + isWeb 644 + ? [ 645 + a.flex_row, 646 + a.px_md, 647 + a.py_lg, 648 + a.gap_md, 649 + a.border_b, 650 + t.atoms.border_contrast_low, 651 + ] 652 + : [ 653 + {flexDirection: 'row-reverse'}, 654 + a.p_lg, 655 + a.gap_md, 656 + a.border_b, 657 + t.atoms.border_contrast_low, 658 + ] 659 + }> 651 660 <IconCircle icon={ListSparkle_Stroke2_Corner0_Rounded} size="lg" /> 652 - <View style={[a.flex_1, a.gap_sm]}> 661 + <View style={[a.flex_1, a.gap_xs]}> 653 662 <Text style={[a.flex_1, a.text_2xl, a.font_bold, t.atoms.text]}> 654 663 <Trans>My Feeds</Trans> 655 664 </Text> ··· 666 675 667 676 return ( 668 677 <View 669 - style={[ 670 - a.flex_row, 671 - a.px_md, 672 - a.pt_2xl, 673 - a.gap_md, 674 - isWeb ? a.pb_2xl : a.pb_xl, 675 - ]}> 678 + style={ 679 + isWeb 680 + ? [a.flex_row, a.px_md, a.pt_lg, a.pb_lg, a.gap_md] 681 + : [{flexDirection: 'row-reverse'}, a.p_lg, a.gap_md] 682 + }> 676 683 <IconCircle 677 684 icon={ListMagnifyingGlass_Stroke2_Corner0_Rounded} 678 685 size="lg"