Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Lighten the post controls

+8 -5
+8 -5
src/view/com/util/PostCtrls.tsx
··· 77 77 icon={['far', 'comment']} 78 78 size={14} 79 79 /> 80 - <Text style={[s.ml5, s.f13]}>{opts.replyCount}</Text> 80 + <Text style={[s.gray5, s.ml5, s.f13]}>{opts.replyCount}</Text> 81 81 </TouchableOpacity> 82 82 </View> 83 83 <View style={s.flex1}> ··· 97 97 style={ 98 98 opts.isReposted 99 99 ? [s.bold, s.green3, s.f13, s.ml5] 100 - : [s.f13, s.ml5] 100 + : [s.gray5, s.f13, s.ml5] 101 101 }> 102 102 {opts.repostCount} 103 103 </Text> ··· 116 116 </Animated.View> 117 117 <Text 118 118 style={ 119 - opts.isUpvoted ? [s.bold, s.red3, s.f13, s.ml5] : [s.f13, s.ml5] 119 + opts.isUpvoted 120 + ? [s.bold, s.red3, s.f13, s.ml5] 121 + : [s.gray5, s.f13, s.ml5] 120 122 }> 121 123 {opts.upvoteCount} 122 124 </Text> ··· 137 139 style={ 138 140 opts.isDownvoted 139 141 ? [s.bold, s.blue3, s.f13, s.ml5] 140 - : [s.f13, s.ml5] 142 + : [s.gray5, s.f13, s.ml5] 141 143 }> 142 144 {opts.downvoteCount} 143 145 </Text> ··· 150 152 const styles = StyleSheet.create({ 151 153 ctrls: { 152 154 flexDirection: 'row', 155 + paddingRight: 20, 153 156 }, 154 157 ctrl: { 155 158 flexDirection: 'row', ··· 158 161 paddingRight: 4, 159 162 }, 160 163 ctrlIcon: { 161 - color: colors.gray5, 164 + color: colors.gray4, 162 165 }, 163 166 ctrlIconReposted: { 164 167 color: colors.green3,