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

Commit b7c8602

Browse files
author
M-ZubairAhmed
committed
padding in bottom of common banner was of different color from the rest of banner
1 parent 6728286 commit b7c8602

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

components/common-banner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ export default props => (
1111
background-color: #f4f7fb;
1212
min-height: 150px;
1313
text-align: center;
14+
padding-top: 30px;
15+
padding-bottom: 30px;
1416
}
1517
.headline {
16-
padding-top: 20px;
1718
font-size: 4em;
1819
color: #df1cb5;
1920
font-weight: 900;
@@ -24,7 +25,6 @@ export default props => (
2425
margin-right: auto;
2526
letter-spacing: 2px;
2627
line-height: 2;
27-
margin-bottom: 30px;
2828
}
2929
@media (max-width: 720px) {
3030
h2 {

components/learn-components/accord-guide.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,15 @@ export default class AccordGuide extends Component {
2121
activeIndex: -1,
2222
};
2323
}
24+
2425
handleClick = (e, titleProps) => {
2526
const { index } = titleProps;
2627
const { activeIndex } = this.state;
2728
const newIndex = activeIndex === index ? -1 : index;
2829

2930
this.setState({ activeIndex: newIndex });
3031
};
32+
3133
async componentDidMount() {
3234
try {
3335
const request = await fetch(this.props.url);

0 commit comments

Comments
 (0)