diff --git a/.eslintrc b/.eslintrc index eb58721..bcf8949 100644 --- a/.eslintrc +++ b/.eslintrc @@ -18,9 +18,6 @@ "node": true, "es6": true }, - "globals": { - "graphql": true - }, "rules": { "quotes": ["error", "single"], "semi": ["error", "never"], diff --git a/src/components/molecules/ProjectNav.jsx b/src/components/molecules/ProjectNav.jsx index 7a0149e..324f622 100644 --- a/src/components/molecules/ProjectNav.jsx +++ b/src/components/molecules/ProjectNav.jsx @@ -2,6 +2,7 @@ import React, { Component } from 'react' import PropTypes from 'prop-types' import { Link, graphql, StaticQuery } from 'gatsby' import Img from 'gatsby-image' +import FullWidth from '../atoms/FullWidth' import styles from './ProjectNav.module.scss' const ProjectLink = ({ node }) => ( @@ -67,28 +68,30 @@ class ProjectNav extends Component { const projects = data.allProjectsYaml.edges return ( - + ) }} /> diff --git a/src/components/molecules/ProjectNav.module.scss b/src/components/molecules/ProjectNav.module.scss index e17ca19..c73d7a5 100644 --- a/src/components/molecules/ProjectNav.module.scss +++ b/src/components/molecules/ProjectNav.module.scss @@ -1,7 +1,7 @@ @import 'variables'; .projectNav { - composes: fullWidth from '../atoms/FullWidth.module.scss'; + // composes: fullWidth from '../atoms/FullWidth.module.scss'; white-space: nowrap; overflow-y: hidden; overflow-x: scroll;