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
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>
0
0
0
0
45
</Text>
46
</Group>
47
</Stack>
···
30
size={'sm'}
31
/>
32
33
+
<Text>
34
<Text
35
component={Link}
36
href={`/profile/${props.author.handle}`}
0
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>