Skip to content

Commit a4fe5e4

Browse files
minor changes
1 parent 911cd6f commit a4fe5e4

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

src/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ class App extends Component {
5555
</Switch>
5656
</div>
5757
</div>
58-
{/* <Footer /> */}
5958
</Paper>
6059
);
6160
}

src/components/Help.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Help extends Component {
7171
}
7272
}
7373
this.setState({ currentResources: resources });
74-
setTimeout(() => this.setState({ loadingStatus: "completeLoading" }), 1500);
74+
setTimeout(() => this.setState({ loadingStatus: "completeLoading" }), 2000);
7575
}
7676

7777
render() {

src/components/Placeholder.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import ContentLoader from "react-content-loader";
44
const MyLoader = () => (
55
<ContentLoader
66
speed={2}
7-
width={400}
8-
height={160}
7+
width={350}
8+
height={200}
99
viewBox="0 0 400 160"
10-
backgroundColor="#f3f3f3"
11-
foregroundColor="#ecebeb"
10+
backgroundColor="#f2f2f2"
11+
foregroundColor="#dedede"
1212
>
1313
<rect x="0" y="0" rx="3" ry="3" width="67" height="11" />
1414
<rect x="458" y="13" rx="3" ry="3" width="140" height="11" />

src/styles/HelpStyles.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@ export default {
22
help: {
33
textAlign: "center",
44
},
5+
56
mainHeading: {
67
marginBottom: "2rem",
78
},
9+
810
container: {
911
marginTop: "3rem",
1012
display: "flex",
1113
justifyContent: "space-between",
1214
flexWrap: "wrap",
1315
},
16+
1417
card: {
1518
boxShadow: "0 1.5rem 3.5rem rgba(0,0,0,0.1)",
1619
backgroundColor: "#fff",
@@ -43,11 +46,18 @@ export default {
4346
marginBottom: ".5rem",
4447
},
4548
},
49+
4650
icons: {
4751
transition: "all .2s",
4852
"&:hover": {
4953
color: "#000",
5054
transform: "scale(1.02)",
5155
},
5256
},
57+
58+
cardLink: {
59+
"&, &:visited": {
60+
color: "#6236FF",
61+
},
62+
},
5363
};

0 commit comments

Comments
 (0)