Skip to content

Commit

Permalink
fix: swap plain buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Aug 17, 2020
1 parent 4605cd2 commit d126a49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/RelatedContentModules/Contribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Contribute = ({ pageContext }) => {
<Button
as={ExternalLink}
href={`${repository}/tree/main/${fileRelativePath}`}
variant={Button.VARIANT.PLAIN}
variant={Button.VARIANT.NORMAL}
size={Button.SIZE.SMALL}
>
<Icon
Expand Down
6 changes: 5 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { useState } from 'react';
import PropTypes from 'prop-types';
import cx from 'classnames';
import { css } from '@emotion/core';
import { graphql, Link } from 'gatsby';

import SEO from '../components/Seo';
Expand Down Expand Up @@ -177,6 +178,9 @@ const IndexPage = ({ data, pageContext }) => {
as={ExternalLink}
variant={Button.VARIANT.PRIMARY}
href="https://forms.gle/Zkdub5e1x4MNqSKW9"
css={css`
margin-right: 0.5rem;
`}
>
Nominate a developer champion
<FeatherIcon
Expand All @@ -186,7 +190,7 @@ const IndexPage = ({ data, pageContext }) => {
</Button>
<Button
as={Link}
variant={Button.VARIANT.PLAIN}
variant={Button.VARIANT.LINK}
to="/developer-champion"
>
Learn more about developer champions
Expand Down

0 comments on commit d126a49

Please sign in to comment.