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

Commit 0cc473f

Browse files
authored
pipeline: escape stylelint file glob (#64)
* pipeline: escape stylelint file glob * fix: styling issues in user molecule
1 parent d1ad708 commit 0cc473f

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ install:
1717

1818
script:
1919
- npx commitlint-travis
20-
- npx stylelint ./src/**/*.js
20+
- npx stylelint './src/**/*.js'
2121
- npx eslint ./src
2222
- npx react-scripts test --coverage
2323
- npm run build

src/molecules/user/elements.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import styled from 'styled-components/macro';
22

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

1110
/**
@@ -61,7 +60,6 @@ export const UserDescription = styled.div`
6160
max-width: 24em;
6261
text-align: center;
6362
line-height: 1.5;
64-
color: #6a737d;
6563
`;
6664

6765
/**

0 commit comments

Comments
 (0)