Skip to content

Commit

Permalink
Merge pull request #206 from Sly777/fixes-for-graphql
Browse files Browse the repository at this point in the history
fixes for graphql
  • Loading branch information
Sly777 authored Oct 4, 2017
2 parents ccacc7f + 6f143cd commit 47efbc8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .graphqlconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"schemaPath": "./libraries/graphql_schemas/schema.graphql",
"schemaPath": "./schema.graphql",
"extensions": {
"endpoints": {
"default": "https://api.graph.cool/simple/v1/cj7ke77fv0e9i0122pflagbvx"
Expand Down
File renamed without changes.
4 changes: 3 additions & 1 deletion components/Header/styles.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import styled from 'styled-components';

// eslint-disable-next-line import/prefer-default-export
export const Header = styled.header`margin-bottom: 25px;`;
export const Header = styled.header`
margin-bottom: 25px;
`;
4 changes: 3 additions & 1 deletion components/PostList/styles.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import styled from 'styled-components';
import * as T from '../Theme';

export const Main = styled.section`padding-bottom: 20px;`;
export const Main = styled.section`
padding-bottom: 20px;
`;

export const Item = styled.li`
display: block;
Expand Down
4 changes: 3 additions & 1 deletion components/Theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ export const App = styled.div`
color: ${props => props.theme.colors.text};
`;

export const A = styled.a`color: ${props => props.theme.colors.main};`;
export const A = styled.a`
color: ${props => props.theme.colors.main};
`;

export const P = styled.p`
font-size: ${props => props.theme.font.sizes.normal};
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"cors": "2.8.4",
"dotenv": "4.0.0",
"express": "4.16.1",
"graphql": "^0.10.5",
"helmet": "3.8.2",
"ip": "1.1.5",
"isomorphic-fetch": "2.2.1",
Expand Down
File renamed without changes.

0 comments on commit 47efbc8

Please sign in to comment.