Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix to post meta overflow in highlighted post (#1211)

* Fix to post meta overflow in highlighted post

* Give more space to desktop web

authored by

Paul Frazee and committed by
GitHub
2198aab8 ee9cf740

+8 -3
+8 -3
src/view/com/post-thread/PostThreadItem.tsx
··· 33 33 import {formatCount} from '../util/numeric/format' 34 34 import {TimeElapsed} from 'view/com/util/TimeElapsed' 35 35 import {makeProfileLink} from 'lib/routes/links' 36 + import {isDesktopWeb} from 'platform/detection' 36 37 37 38 export const PostThreadItem = observer(function PostThreadItem({ 38 39 item, ··· 226 227 </Link> 227 228 </View> 228 229 </View> 229 - <View style={s.flex1} /> 230 230 <PostDropdownBtn 231 231 testID="postDropdownBtn" 232 232 itemUri={itemUri} ··· 239 239 onOpenTranslate={onOpenTranslate} 240 240 onToggleThreadMute={onToggleThreadMute} 241 241 onDeletePost={onDeletePost} 242 - style={{paddingVertical: 6, paddingHorizontal: 10}} 242 + style={{ 243 + paddingVertical: 6, 244 + paddingHorizontal: 10, 245 + marginLeft: 'auto', 246 + width: 40, 247 + }} 243 248 /> 244 249 </View> 245 250 <View style={[s.pl10, s.pr10, s.pb10]}> ··· 556 561 }, 557 562 metaItem: { 558 563 paddingRight: 5, 559 - maxWidth: 240, 564 + maxWidth: isDesktopWeb ? 380 : 220, 560 565 }, 561 566 alert: { 562 567 marginBottom: 6,