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
feat: replace default title colour with "bright"
Pouria Delfanazari
4 months ago
513edfa6
8227ed2e
+9
-4
4 changed files
expand all
collapse all
unified
split
src
webapp
features
cards
components
urlCard
UrlCard.tsx
collections
components
collectionCard
CollectionCard.tsx
feeds
components
feedActivityStatus
FeedActivityStatus.tsx
profile
components
profileMenu
ProfileMenu.tsx
+1
-1
src/webapp/features/cards/components/urlCard/UrlCard.tsx
···
67
</Anchor>
68
</Tooltip>
69
{props.cardContent.title && (
70
-
<Text fw={500} lineClamp={2}>
71
{props.cardContent.title}
72
</Text>
73
)}
···
67
</Anchor>
68
</Tooltip>
69
{props.cardContent.title && (
70
+
<Text fw={500} lineClamp={2} c={'var(--mantine-color-bright)'}>
71
{props.cardContent.title}
72
</Text>
73
)}
+1
-1
src/webapp/features/collections/components/collectionCard/CollectionCard.tsx
···
34
>
35
<Stack justify="space-between" h={'100%'}>
36
<Stack gap={0}>
37
-
<Text fw={500} lineClamp={1}>
38
{collection.name}
39
</Text>
40
{collection.description && (
···
34
>
35
<Stack justify="space-between" h={'100%'}>
36
<Stack gap={0}>
37
+
<Text fw={500} lineClamp={1} c={'var(--mantine-color-bright)'}>
38
{collection.name}
39
</Text>
40
{collection.description && (
+6
-1
src/webapp/features/feeds/components/feedActivityStatus/FeedActivityStatus.tsx
···
41
42
return (
43
<Text fw={500}>
44
-
<Text component={Link} href={`/profile/${props.user.handle}`} fw={600}>
0
0
0
0
0
45
{sanitizeText(props.user.name)}
46
</Text>{' '}
47
{collections.length === 0 ? (
···
41
42
return (
43
<Text fw={500}>
44
+
<Text
45
+
component={Link}
46
+
href={`/profile/${props.user.handle}`}
47
+
fw={600}
48
+
c={'var(--mantine-color-bright)'}
49
+
>
50
{sanitizeText(props.user.name)}
51
</Text>{' '}
52
{collections.length === 0 ? (
+1
-1
src/webapp/features/profile/components/profileMenu/ProfileMenu.tsx
···
70
<Menu.Target>
71
<Button
72
variant="subtle"
73
-
color={computedColorScheme === 'dark' ? 'gray' : 'dark'}
74
fz="md"
75
radius="md"
76
size="lg"
···
70
<Menu.Target>
71
<Button
72
variant="subtle"
73
+
color={'var(--mantine-color-bright)'}
74
fz="md"
75
radius="md"
76
size="lg"