Skip to content

Commit

Permalink
fix: fix inverted hyperlink colours
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalinDe committed Mar 6, 2024
1 parent d628971 commit 7e02bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/frontend/src/pages/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const urlizeLabel = (label: string, url?: string) => {
return url ? (
<a
href={url}
style={{ color: 'red', textDecoration: 'underline', textDecorationColor: 'white' }}>
style={{ color: 'white', textDecoration: 'underline', textDecorationColor: 'red' }}>
{label}
</a>
) : (
Expand Down

0 comments on commit 7e02bb9

Please sign in to comment.