Skip to content

Commit 6a5ea02

Browse files
TWHoubbmoz
authored andcommitted
feature/#155492453 (#186)
* feature: update heading to match design [#155492453] * feature: use variable for background color [#155492453]
1 parent 8927da5 commit 6a5ea02

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

client/components/Home/Home.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class Home extends Component {
8383
</section>
8484

8585
<ListOfProjects
86-
title={'Click To Apply'}
86+
title={'Find Projects'}
8787
projects={this.state.filteredProjects}
8888
className={styles.projectList}
8989
/>

client/components/ListOfProjects/ListOfProjects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ListOfProjects extends Component {
4848
render () {
4949
return (
5050
<section className={styles.projectListSection}>
51-
<h1>{this.props.title}</h1>
51+
<h1 className={styles.title}>{this.props.title}</h1>
5252

5353
<div className={styles.listContainer}>
5454
<GridList className={styles.list} cellHeight={'auto'} cols={3} spacing={8}>

client/components/ListOfProjects/ListOfProjects.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
.title {
99
font-size: 20px;
1010
margin-bottom: 15px;
11+
padding: 15px;
12+
color: white;
13+
background-color: $backgound-orange;
1114
}
1215

1316
.listContainer {

client/scss/partials/_variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ $errorColor: red;
1010
$validInputColor: #3E9B2A;
1111
$inputsBorderColor: #C6CBD4;
1212
$text-red: #EA4C2D;
13+
$backgound-orange: #ED4B2F;

0 commit comments

Comments
 (0)