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