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 a28f35a commit 3c41073Copy full SHA for 3c41073
web/src/components/modals/AboutModal/SponsorsBlock/SponsorsBlock.tsx
@@ -11,6 +11,9 @@ interface Props {
11
}
12
13
const styles = mergeStyleSets({
14
+ link: {
15
+ color: 'currentColor',
16
+ },
17
image: {
18
width: '192px',
19
maxHeight: '32px',
@@ -32,7 +35,7 @@ export const SponsorsBlock: React.FC<Props> = ({ isDark }) => (
32
35
</a>
33
36
</Stack.Item>
34
37
<Stack.Item className={styles.text}>
- <a href={gnolandUrl} target="_blank" rel="noreferrer">
38
+ <a href={gnolandUrl} className={styles.link} target="_blank" rel="noreferrer">
39
gno.land
40
41
, an open-source smart contract platform powered by Gno, a deterministic variant of Go.
0 commit comments