Skip to content

Commit 3c41073

Browse files
authored
fix: fix link color in about dialog (#450)
1 parent a28f35a commit 3c41073

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

web/src/components/modals/AboutModal/SponsorsBlock/SponsorsBlock.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ interface Props {
1111
}
1212

1313
const styles = mergeStyleSets({
14+
link: {
15+
color: 'currentColor',
16+
},
1417
image: {
1518
width: '192px',
1619
maxHeight: '32px',
@@ -32,7 +35,7 @@ export const SponsorsBlock: React.FC<Props> = ({ isDark }) => (
3235
</a>
3336
</Stack.Item>
3437
<Stack.Item className={styles.text}>
35-
<a href={gnolandUrl} target="_blank" rel="noreferrer">
38+
<a href={gnolandUrl} className={styles.link} target="_blank" rel="noreferrer">
3639
gno.land
3740
</a>
3841
, an open-source smart contract platform powered by Gno, a deterministic variant of Go.

0 commit comments

Comments
 (0)