diff --git a/src/components/atoms/Button.module.scss b/src/components/atoms/Button.module.scss index 0f6f882..edb727d 100644 --- a/src/components/atoms/Button.module.scss +++ b/src/components/atoms/Button.module.scss @@ -12,6 +12,12 @@ border: .05rem solid rgba($brand-cyan, .75); font-size: $font-size-small; text-transform: uppercase; + cursor: pointer; + + @media (min-width: 30rem) { + display: inline-block; + width: auto; + } svg { fill: $brand-grey-light; diff --git a/src/components/molecules/ProjectLinks.module.scss b/src/components/molecules/ProjectLinks.module.scss index 57843f9..3a82bb4 100644 --- a/src/components/molecules/ProjectLinks.module.scss +++ b/src/components/molecules/ProjectLinks.module.scss @@ -16,6 +16,11 @@ margin-left: $spacer / 2; margin-bottom: $spacer / 2; } + + a { + display: block; + width: 100%; + } } .title { diff --git a/src/pages/404.jsx b/src/pages/404.jsx index f2e43b5..c75e3f6 100644 --- a/src/pages/404.jsx +++ b/src/pages/404.jsx @@ -4,6 +4,7 @@ import { Link } from 'gatsby' import giphyAPI from 'giphy-js-sdk-core' import Layout from '../components/Layout' import Content from '../components/atoms/Content' +import Button from '../components/atoms/Button' import './404.scss' // Famous last words: @@ -48,15 +49,15 @@ class NotFound extends Component {

You might want to check the url, or{' '} go back to the homepage. Or just check out - some fail gifs, entirely your choice. + some cat fail gifs, entirely your choice.