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

reorder components

This commit is contained in:
Matthias Kretschmann 2018-09-15 19:51:10 +02:00
parent 7c088ad766
commit 846a22db1e
Signed by: m
GPG Key ID: 606EEEF3C479A91F
10 changed files with 8 additions and 10 deletions

View File

@ -21,11 +21,11 @@
}, },
"dependencies": { "dependencies": {
"file-saver": "^1.3.8", "file-saver": "^1.3.8",
"gatsby": "^2.0.0-rc.24", "gatsby": "^2.0.0-rc.25",
"gatsby-image": "^2.0.0-rc.2", "gatsby-image": "^2.0.0-rc.2",
"gatsby-plugin-manifest": "^2.0.2-rc.1", "gatsby-plugin-manifest": "^2.0.2-rc.1",
"gatsby-plugin-matomo": "^0.5.0", "gatsby-plugin-matomo": "^0.5.0",
"gatsby-plugin-offline": "^2.0.0-rc.7", "gatsby-plugin-offline": "^2.0.0-rc.8",
"gatsby-plugin-react-helmet": "^3.0.0-rc.1", "gatsby-plugin-react-helmet": "^3.0.0-rc.1",
"gatsby-plugin-sass": "^2.0.0-rc.2", "gatsby-plugin-sass": "^2.0.0-rc.2",
"gatsby-plugin-sharp": "^2.0.0-rc.7", "gatsby-plugin-sharp": "^2.0.0-rc.7",
@ -51,7 +51,7 @@
"ava": "^0.25.0", "ava": "^0.25.0",
"babel-eslint": "^9.0.0", "babel-eslint": "^9.0.0",
"chrome-launcher": "^0.10.2", "chrome-launcher": "^0.10.2",
"eslint": "^5.5.0", "eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1", "eslint-config-prettier": "^3.0.1",
"eslint-loader": "^2.1.0", "eslint-loader": "^2.1.0",
"eslint-plugin-graphql": "^2.1.1", "eslint-plugin-graphql": "^2.1.1",

View File

@ -2,7 +2,7 @@ import React, { PureComponent } from 'react'
import PropTypes from 'prop-types' import PropTypes from 'prop-types'
import { StaticQuery, graphql } from 'gatsby' import { StaticQuery, graphql } from 'gatsby'
import Vcard from '../atoms/Vcard' import Vcard from '../atoms/Vcard'
import LogoUnit from '../atoms/LogoUnit' import LogoUnit from '../molecules/LogoUnit'
import Networks from '../molecules/Networks' import Networks from '../molecules/Networks'
import styles from './Footer.module.scss' import styles from './Footer.module.scss'

View File

@ -4,7 +4,7 @@ import { Link, StaticQuery, graphql } from 'gatsby'
import Networks from '../molecules/Networks' import Networks from '../molecules/Networks'
import Availability from '../molecules/Availability' import Availability from '../molecules/Availability'
import ThemeSwitch from '../molecules/ThemeSwitch' import ThemeSwitch from '../molecules/ThemeSwitch'
import LogoUnit from '../atoms/LogoUnit' import LogoUnit from '../molecules/LogoUnit'
import styles from './Header.module.scss' import styles from './Header.module.scss'
const query = graphql` const query = graphql`

View File

@ -1,7 +1,7 @@
import React from 'react' import React from 'react'
import PropTypes from 'prop-types' import PropTypes from 'prop-types'
import { Link, graphql } from 'gatsby' import { Link, graphql } from 'gatsby'
import ProjectImage from '../components/atoms/ProjectImage' import ProjectImage from '../components/molecules/ProjectImage'
import FullWidth from '../components/atoms/FullWidth' import FullWidth from '../components/atoms/FullWidth'
import styles from './index.module.scss' import styles from './index.module.scss'

View File

@ -5,7 +5,7 @@ import ReactMarkdown from 'react-markdown'
import { graphql } from 'gatsby' import { graphql } from 'gatsby'
import Content from '../components/atoms/Content' import Content from '../components/atoms/Content'
import FullWidth from '../components/atoms/FullWidth' import FullWidth from '../components/atoms/FullWidth'
import ProjectImage from '../components/atoms/ProjectImage' import ProjectImage from '../components/molecules/ProjectImage'
import ProjectTechstack from '../components/molecules/ProjectTechstack' import ProjectTechstack from '../components/molecules/ProjectTechstack'
import ProjectLinks from '../components/molecules/ProjectLinks' import ProjectLinks from '../components/molecules/ProjectLinks'
import ProjectNav from '../components/molecules/ProjectNav' import ProjectNav from '../components/molecules/ProjectNav'

View File

@ -1,9 +1,7 @@
@import 'variables'; @import 'variables';
@import '../components/atoms/ProjectImage.module'; @import '../components/molecules/ProjectImage.module';
// .project__imagewrap {
.spacer { .spacer {
//composes: project__imagewrap from '../components/atoms/ProjectImage.module';
margin-bottom: $spacer * 3; margin-bottom: $spacer * 3;
@media (min-width: 30rem) { @media (min-width: 30rem) {