Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
fix(feed): disable feeds (icons) until working
Browse files Browse the repository at this point in the history
  • Loading branch information
CanRau committed Apr 22, 2019
1 parent 87c00e5 commit 43a6a39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/templates/ContactPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import styled from '@emotion/styled'
import { css } from '@emotion/core'
import MainLayout from '@components/MainLayout'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faRssSquare } from '@fortawesome/free-solid-svg-icons/faRssSquare'
// import { faRssSquare } from '@fortawesome/free-solid-svg-icons/faRssSquare'
import { colors, media } from '@src/theme'
import TitledCopy from '@components/TitledCopy'
import { Newsletter } from '@components/NewsletterWidget'
Expand Down Expand Up @@ -132,7 +132,7 @@ const ContactPage = props => {
</StyledA>
</div>
))}
<div
{/* <div
css={css`
& svg {
color: ${colors.rss};
Expand All @@ -149,7 +149,7 @@ const ContactPage = props => {
>
<FontAwesomeIcon icon={faRssSquare} size="lg" />
</StyledA>
</div>
</div> */}
</div>

<ContactForm
Expand Down
6 changes: 3 additions & 3 deletions src/templates/SupportPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Img from 'gatsby-image/withIEPolyfill'
import styled from '@emotion/styled'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faNewspaper } from '@fortawesome/free-solid-svg-icons/faNewspaper'
import { faRssSquare } from '@fortawesome/free-solid-svg-icons/faRssSquare'
// import { faRssSquare } from '@fortawesome/free-solid-svg-icons/faRssSquare'
import { css } from '@emotion/core'
import MainLayout from '@components/MainLayout'
import { SupportWidget } from '@components/Shared'
Expand Down Expand Up @@ -289,7 +289,7 @@ const SupportPage = props => {
<FontAwesomeIcon icon={faNewspaper} size="3x" />
</StyledA>
</div>
<div
{/* <div
css={css`
&:hover svg {
color: ${colors.rss};
Expand All @@ -303,7 +303,7 @@ const SupportPage = props => {
>
<FontAwesomeIcon icon={faRssSquare} size="3x" />
</StyledA>
</div>
</div> */}
</div>
</div>

Expand Down

0 comments on commit 43a6a39

Please sign in to comment.