This repository has no description
0

Configure Feed

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

feat: show full connection badge on feed item

+3 -3
+3 -3
src/webapp/features/connections/components/connectionCard/ConnectionCard.tsx
··· 17 17 const content = ( 18 18 <Grid gutter={'xs'} align="stretch"> 19 19 {/* Source URL */} 20 - <Grid.Col span={{ base: 12, sm: 5 }}> 20 + <Grid.Col span={{ base: 12, sm: 'auto' }}> 21 21 <UrlCard 22 22 id={sourceUrlView.url} 23 23 url={sourceUrlView.url} ··· 29 29 </Grid.Col> 30 30 31 31 {/* Connection Metadata */} 32 - <Grid.Col span={{ base: 12, sm: 2 }}> 32 + <Grid.Col span={{ base: 12, sm: 2.5 }}> 33 33 <Card p={0} radius={'md'} bg={'transparent'} h={'100%'}> 34 34 <Group justify="center" wrap="nowrap" align="center" h={'100%'}> 35 35 <Stack gap={0} align="center" justify="center"> ··· 79 79 </Grid.Col> 80 80 81 81 {/* Target URL */} 82 - <Grid.Col span={{ base: 12, sm: 5 }}> 82 + <Grid.Col span={{ base: 12, sm: 'auto' }}> 83 83 <UrlCard 84 84 id={targetUrlView.url} 85 85 url={targetUrlView.url}