A social knowledge tool for researchers built on ATProto

fix: note card author theme colour

+7 -4
+7 -4
src/webapp/features/notes/components/noteCard/NoteCard.tsx
··· 30 30 size={'sm'} 31 31 /> 32 32 33 - <Text c={'gray'}> 33 + <Text> 34 34 <Text 35 35 component={Link} 36 36 href={`/profile/${props.author.handle}`} 37 - c={'dark'} 38 37 fw={500} 39 38 span 40 39 > 41 40 {props.author.name} 42 41 </Text> 43 - <Text span>{' · '}</Text> 44 - <Text span>{relativeCreateDate} </Text> 42 + <Text c={'gray'} span> 43 + {' · '} 44 + </Text> 45 + <Text c={'gray'} span> 46 + {relativeCreateDate}{' '} 47 + </Text> 45 48 </Text> 46 49 </Group> 47 50 </Stack>