Bluesky app fork with some witchin' additions 💫

fix right nav overflow (#9253)

authored by samuel.fm and committed by

GitHub e5f31316 54a388d1

+4 -9
+3 -7
src/view/shell/desktop/Feeds.tsx
··· 27 27 28 28 if (isLoading) { 29 29 return ( 30 - <View 31 - style={[ 32 - { 33 - gap: 10, 34 - paddingVertical: 2, 35 - }, 36 - ]}> 30 + <View style={[{gap: 10}]}> 37 31 {Array(5) 38 32 .fill(0) 39 33 .map((_, i) => ( ··· 60 54 return ( 61 55 <View 62 56 style={[ 57 + a.flex_1, 63 58 web({ 64 59 gap: 10, 65 60 /* ··· 89 84 style={[ 90 85 a.text_md, 91 86 a.leading_snug, 87 + a.flex_shrink_0, 92 88 current 93 89 ? [a.font_semi_bold, t.atoms.text] 94 90 : [t.atoms.text_contrast_medium],
+1 -2
src/view/shell/desktop/RightNav.tsx
··· 79 79 * Compensate for the right padding above (2px) to retain intended width. 80 80 */ 81 81 width: width + gutters.paddingLeft + 2, 82 - maxHeight: '100%', 83 - overflowY: 'auto', 82 + maxHeight: '100vh', 84 83 }), 85 84 ]}> 86 85 {!isSearchScreen && <DesktopSearch />}