Skip to content

Commit

Permalink
fix: fix link color in about dialog (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
x1unix authored Dec 14, 2024
1 parent a28f35a commit 3c41073
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ interface Props {
}

const styles = mergeStyleSets({
link: {
color: 'currentColor',
},
image: {
width: '192px',
maxHeight: '32px',
Expand All @@ -32,7 +35,7 @@ export const SponsorsBlock: React.FC<Props> = ({ isDark }) => (
</a>
</Stack.Item>
<Stack.Item className={styles.text}>
<a href={gnolandUrl} target="_blank" rel="noreferrer">
<a href={gnolandUrl} className={styles.link} target="_blank" rel="noreferrer">
gno.land
</a>
, an open-source smart contract platform powered by Gno, a deterministic variant of Go.
Expand Down

0 comments on commit 3c41073

Please sign in to comment.