1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-12-22 17:23:22 +01:00

css modules workaround so build works

This commit is contained in:
Matthias Kretschmann 2018-06-22 20:54:04 +02:00
parent 9ecd43d0e3
commit dc9232134a
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 25 additions and 25 deletions

View File

@ -18,9 +18,6 @@
"node": true,
"es6": true
},
"globals": {
"graphql": true
},
"rules": {
"quotes": ["error", "single"],
"semi": ["error", "never"],

View File

@ -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,6 +68,7 @@ class ProjectNav extends Component {
const projects = data.allProjectsYaml.edges
return (
<FullWidth>
<nav
className={styles.projectNav}
ref={node => {
@ -89,6 +91,7 @@ class ProjectNav extends Component {
)
})}
</nav>
</FullWidth>
)
}}
/>

View File

@ -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;