Bluesky app fork with some witchin' additions 💫

Fix sticky offset, gear color (#5537)

authored by

Eric Bailey and committed by
GitHub
26c09ff1 669cdf22

+5 -5
+5 -5
src/view/screens/Search/Search.tsx
··· 624 624 * Arbitrary sizing, so guess and check, used for sticky header alignment and 625 625 * sizing. 626 626 */ 627 - const headerHeight = 56 + (showFilters ? 40 : 0) 627 + const headerHeight = 64 + (showFilters ? 40 : 0) 628 628 629 629 useFocusEffect( 630 630 useNonReactiveCallback(() => { ··· 838 838 <CenteredView 839 839 style={[ 840 840 a.p_md, 841 - a.pb_0, 841 + a.pb_sm, 842 842 a.gap_sm, 843 843 t.atoms.bg, 844 844 web({ 845 - height: headerHeight + a.mb_sm.marginBottom, 845 + height: headerHeight, 846 846 position: 'sticky', 847 847 top: 0, 848 848 zIndex: 1, 849 849 }), 850 850 ]} 851 851 sideBorders={gtMobile}> 852 - <View style={[a.flex_row, a.gap_sm, a.mb_sm]}> 852 + <View style={[a.flex_row, a.gap_sm]}> 853 853 {!gtMobile && ( 854 854 <Button 855 855 testID="viewHeaderBackOrMenuBtn" ··· 887 887 fill={ 888 888 showFilters 889 889 ? t.palette.primary_500 890 - : t.atoms.text_contrast_low.color 890 + : t.atoms.text_contrast_medium.color 891 891 } 892 892 /> 893 893 </Button>