tangled
alpha
login
or
join now
cosmik.network
/
semble
43
fork
atom
A social knowledge tool for researchers built on ATProto
43
fork
atom
overview
issues
13
pulls
pipelines
fix: note card author theme colour
Pouria Delfanazari
4 months ago
b7b3e79e
e40b5a1f
+7
-4
1 changed file
expand all
collapse all
unified
split
src
webapp
features
notes
components
noteCard
NoteCard.tsx
+7
-4
src/webapp/features/notes/components/noteCard/NoteCard.tsx
···
30
30
size={'sm'}
31
31
/>
32
32
33
33
-
<Text c={'gray'}>
33
33
+
<Text>
34
34
<Text
35
35
component={Link}
36
36
href={`/profile/${props.author.handle}`}
37
37
-
c={'dark'}
38
37
fw={500}
39
38
span
40
39
>
41
40
{props.author.name}
42
41
</Text>
43
43
-
<Text span>{' · '}</Text>
44
44
-
<Text span>{relativeCreateDate} </Text>
42
42
+
<Text c={'gray'} span>
43
43
+
{' · '}
44
44
+
</Text>
45
45
+
<Text c={'gray'} span>
46
46
+
{relativeCreateDate}{' '}
47
47
+
</Text>
45
48
</Text>
46
49
</Group>
47
50
</Stack>