Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading