Skip to content

Commit

Permalink
fix: fix color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalinDe committed Mar 7, 2024
1 parent a0ad98e commit a384645
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions web/frontend/src/pages/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ export function internationalize(language: string, internationalizable: Hint | T

export const urlizeLabel = (label: string, url?: string) => {
return url ? (
<a
href={url}
style={{ color: 'white', textDecoration: 'underline', textDecorationColor: 'red' }}>
<a href={url} style={{ textDecoration: 'underline', textDecorationColor: 'red' }}>
{label}
</a>
) : (
Expand Down

0 comments on commit a384645

Please sign in to comment.