We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a57160 commit fba738aCopy full SHA for fba738a
client/src/components/home/shared/Annoucements.tsx
@@ -132,7 +132,16 @@ export default function Announcements(props) {
132
{rows.slice().reverse().map((row, index) => (
133
<ItemRow key={row.id} index={index} rowKey={row.id}>
134
<TableCell component='th' scope='row' sx={{pl: 3.25}}>
135
- <Typography sx={{fontWeight: 'bold', whiteSpace: 'pre-line'}}>
+ <Typography
136
+ sx={{
137
+ 'fontWeight': 'bold',
138
+ 'whiteSpace': 'pre-line',
139
+ '& a': {
140
+ color: 'primary.main',
141
+ cursor: 'pointer',
142
+ },
143
+ }}
144
+ >
145
<Linkify options={{target: '_blank'}}>{row.content}</Linkify>
146
</Typography>
147
</TableCell>
0 commit comments