Bluesky app fork with some witchin' additions 💫

fix hover card width (#8392)

authored by samuel.fm and committed by

GitHub c7101870 29de23bb

+9 -3
+9 -3
src/components/ProfileHoverCard/index.web.tsx
··· 381 381 t.atoms.bg, 382 382 t.atoms.border_contrast_low, 383 383 t.atoms.shadow_lg, 384 - a.w_full, 385 - {maxWidth: status.isActive ? 500 : 300}, 384 + {width: status.isActive ? 350 : 300}, 385 + a.max_w_full, 386 386 ]}> 387 387 {data && moderationOpts ? ( 388 388 status.isActive ? ( ··· 396 396 <Inner profile={data} moderationOpts={moderationOpts} hide={hide} /> 397 397 ) 398 398 ) : ( 399 - <View style={[a.justify_center, a.align_center, {minHeight: 200}]}> 399 + <View 400 + style={[ 401 + a.justify_center, 402 + a.align_center, 403 + {minHeight: 200}, 404 + a.w_full, 405 + ]}> 400 406 <Loader size="xl" /> 401 407 </View> 402 408 )}