Skip to content

Commit fba738a

Browse files
committed
announcement link color matches primary color
1 parent 2a57160 commit fba738a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

client/src/components/home/shared/Annoucements.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,16 @@ export default function Announcements(props) {
132132
{rows.slice().reverse().map((row, index) => (
133133
<ItemRow key={row.id} index={index} rowKey={row.id}>
134134
<TableCell component='th' scope='row' sx={{pl: 3.25}}>
135-
<Typography sx={{fontWeight: 'bold', whiteSpace: 'pre-line'}}>
135+
<Typography
136+
sx={{
137+
'fontWeight': 'bold',
138+
'whiteSpace': 'pre-line',
139+
'& a': {
140+
color: 'primary.main',
141+
cursor: 'pointer',
142+
},
143+
}}
144+
>
136145
<Linkify options={{target: '_blank'}}>{row.content}</Linkify>
137146
</Typography>
138147
</TableCell>

0 commit comments

Comments
 (0)