Skip to content
This repository has been archived by the owner on Apr 9, 2023. It is now read-only.

Commit

Permalink
pipeline: escape stylelint file glob (#64)
Browse files Browse the repository at this point in the history
* pipeline: escape stylelint file glob

* fix: styling issues in user molecule
  • Loading branch information
byCedric committed Oct 18, 2018
1 parent d1ad708 commit 0cc473f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -17,7 +17,7 @@ install:

script:
- npx commitlint-travis
- npx stylelint ./src/**/*.js
- npx stylelint './src/**/*.js'
- npx eslint ./src
- npx react-scripts test --coverage
- npm run build
Expand Down
6 changes: 2 additions & 4 deletions src/molecules/user/elements.js
@@ -1,11 +1,10 @@
import styled from 'styled-components/macro';

/**
* The user container creates a block that should fully contain the necessary user information.
* It will push other content, like event cards, below this content.
* The user container defines some basic styling for all elements inside.
*/
export const UserContainer = styled.div`
/*width: 100%;*/
color: #6a737d;
`;

/**
Expand Down Expand Up @@ -61,7 +60,6 @@ export const UserDescription = styled.div`
max-width: 24em;
text-align: center;
line-height: 1.5;
color: #6a737d;
`;

/**
Expand Down

0 comments on commit 0cc473f

Please sign in to comment.