Skip to content

Commit 1848948

Browse files
authored
Merge pull request #359 from Mandy-cyber/source
2 parents e05a2eb + 18b4083 commit 1848948

File tree

12 files changed

+20
-12
lines changed

12 files changed

+20
-12
lines changed

src/App.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.App {
2-
background-color: #007EE5;
2+
/* height: 500px; */
3+
background-color: #0054B5;
34
text-align: center;
45
display: flex;
56
justify-content: center;

src/components/LinkButton/LinkButton.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 2px;
1010
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
1111

12-
background-color: #2ecc71;
12+
background-color: #0A680D;
1313
color: #fff;
1414

1515
-webkit-transition: background-color 0.3s;

src/components/Navbar/Navbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.topnav {
2-
background-color:#007EE5;
2+
background-color: #0054B5;
33
overflow: hidden;
44
text-align: right;
55
}

src/components/Navbar/Navbar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const Navbar = () => {
2222
</a>
2323
<a href="https://github.com/firstcontributions/first-contributions" target="_blank" rel="noopener noreferrer">
2424
<img src={github} className="logo" alt="github logo" />
25-
Github
25+
<span>GitHub</span>
2626
</a>
2727
</div>
2828
);

src/components/ProjectList/CardsContainer.jsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,17 @@ export default class CardsContainer extends React.Component {
119119
<div>
120120
<div id='container'>
121121
<div className='inputContainer'>
122-
<input id='search' type='text' name='search' placeholder='Search...' onChange={this.handleChange} />
122+
<input id='search' type='text' name='search' placeholder='Search...' onChange={this.handleChange} aria-label='Search'/>
123123
</div>
124-
<div className='inputContainer'>
124+
<div id="tag-selector-container" className='inputContainer'>
125125
<Select
126126
name='tag-selector'
127127
value={this.state.value}
128128
onChange={this.handleSelectChange}
129129
options={this.filterOptions}
130130
multi={true}
131-
placeholder='Filter'
131+
placeholder={<div className='filter-placeholder-text'>Filter</div>}
132+
aria-labelledby='tag-selector-container'
132133
/>
133134
</div>
134135
</div>
@@ -142,6 +143,7 @@ export default class CardsContainer extends React.Component {
142143
projectLink={item.projectLink}
143144
description={item.description}
144145
tags={item.tags}
146+
className='testing-testing'
145147
/>
146148
);
147149
})}

src/components/ProjectList/ProjectsCards.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const Card = ({
2727
alt="the framework or language that the project is build upon"
2828
src={logoLink}
2929
/>
30-
<h3 className="Card-Title">{name}</h3>
30+
<p className="Card-Title">{name}</p>
3131
</div>
3232
<div className="Card-Body">
3333
<div className="Card-Tag">{tags}</div>

src/components/ProjectList/css/cards-container.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
overflow: hidden;
88
}
99

10+
.filter-placeholder-text {
11+
color: #757575;
12+
}
13+
1014
@media screen and (max-width: 500px) {
1115
.containerLayout{
1216
padding: 15px;

src/components/ProjectList/css/project-cards.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
.Card-Title {
8080
margin-top: 6%;
8181
height: 10%;
82+
font-size: 20px;
8283
}
8384
.Card-Link-Style {
8485
margin-left: 10%;

src/components/ScrollUpButton/scroll-up.svg

Lines changed: 1 addition & 1 deletion
Loading

src/components/SocialShare/Facebook.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Icon, IconPaths } from './icons.js';
44
const facebookLink = "https://www.facebook.com/sharer/sharer.php?u=https://roshanjossey.github.io/first-contributions&quote=Yay%21%20I%20just%20made%20my%20first%20open%20source%20contribution%20with%20First%20Contributions.%20You%20can%20too,%20by%20following%20a%20simple%20tutorial%20at%20https%3A//goo.gl/66Axwe&hashtag=%23Hacktoberfest"
55

66
const FacebookCard = () => (
7-
<a className="icon-card twitter" href={facebookLink} rel="noopener noreferrer" target="_blank">
7+
<a className="icon-card facebook" href={facebookLink} rel="noopener noreferrer" target="_blank" aria-label="Share the news of your first contribution on Facebook">
88
<Icon
99
color="rgb(255, 255, 255)"
1010
size={40}

0 commit comments

Comments
 (0)