Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.