A social knowledge tool for researchers built on ATProto

fix: note card inner content not vertically expanding in grid

+2 -2
+2 -2
src/webapp/features/notes/components/noteCard/NoteCard.tsx
··· 15 15 const relativeCreateDate = time === 'just now' ? `${time}` : `${time} ago`; 16 16 17 17 return ( 18 - <Card p={'sm'} radius={'lg'} withBorder> 19 - <Stack h={'100%'}> 18 + <Card p={'sm'} radius={'lg'} h={'100%'} withBorder> 19 + <Stack justify="space-between" h={'100%'}> 20 20 <Spoiler showLabel={'Read more'} hideLabel={'See less'} maxHeight={200}> 21 21 <Text fs={'italic'}>{props.note}</Text> 22 22 </Spoiler>