Skip to content

Commit

Permalink
change colour style for collapse host and candidate #6 #15 #23
Browse files Browse the repository at this point in the history
  • Loading branch information
Mireia committed Apr 17, 2016
1 parent da831f7 commit d7155f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/js/components/CollapsibleItem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {Well, Collapse} from 'react-bootstrap'

const liStyle = {
listStyleType: 'none',
color: 'dark-blue',
color: 'white',
fontSize: '1.7em',
textDecoration: 'none',
cursor: 'pointer'
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/js/components/List/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export default (props) => {
}

const ulStyle = {
backgroundColor: '#03A9F4',
padding: '2em',
borderRadius: '10px',
color: 'white',
Expand All @@ -26,7 +25,7 @@ const ulStyle = {

const liStyle = {
listStyleType: 'none',
color: 'white',
color: 'black',
fontSize: '1.7em',
textDecoration: 'none',
cursor: 'pointer'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/js/views/Candidate/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {Grid, Row, Col} from 'react-bootstrap'
const loggedInCandidateID = 'candidateUUID1'

const ulStyle = {
backgroundColor: '#03A9F4',
backgroundColor: '#0075B2',
padding: '2em',
borderRadius: '10px'
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/js/views/Host/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import CandidateProfileModal from '../../components/CandidateProfile/CandidatePr
import {Grid, Row, Col} from 'react-bootstrap'

const ulStyle = {
backgroundColor: '#03A9F4',
backgroundColor: '#0075B2',
padding: '2em',
borderRadius: '10px'
}
Expand Down

0 comments on commit d7155f6

Please sign in to comment.