Skip to content

Commit 27ebd1e

Browse files
author
flavienbwk
committed
Fixed typo in CSS class
1 parent 9ea2ec0 commit 27ebd1e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/app/src/Dashboard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Auth } from './utils/Auth'
55
import styled from 'styled-components'
66

77
const Styles = styled.div`
8-
.paddind-bottom {
8+
.padding-bottom {
99
padding-bottom: 16px;
1010
}
1111
@@ -31,7 +31,7 @@ export class Dashboard extends Component {
3131
return (
3232
<Styles>
3333
<Container>
34-
<Row className="paddind-bottom">
34+
<Row className="padding-bottom">
3535
<Col lg={{ span: 12 }} className="center">
3636
<Jumbotron>
3737
<h1>Hello { this.state.profile.first_name } !</h1>

app/app/src/Home.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styled from 'styled-components';
44
import { Link } from 'react-router-dom';
55

66
const Styles = styled.div`
7-
.paddind-bottom {
7+
.padding-bottom {
88
padding-bottom: 16px;
99
}
1010
@@ -22,7 +22,7 @@ class Home extends Component {
2222
return (
2323
<Styles>
2424
<Container>
25-
<Row className="paddind-bottom">
25+
<Row className="padding-bottom">
2626
<Col lg={{ span: 12 }} className="center">
2727
<Jumbotron>
2828
<h1>Hello</h1>

app/app/src/Login.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Notifier } from './utils/Notifier'
99
import styled from 'styled-components'
1010

1111
const Styles = styled.div`
12-
.paddind-top {
12+
.padding-top {
1313
padding-top: 16px;
1414
}
1515
@@ -84,7 +84,7 @@ export class Login extends Component {
8484
return (
8585
<Styles>
8686
<Container>
87-
<Row className="paddind-top">
87+
<Row className="padding-top">
8888
<Col lg={{ offset: 3, span: 6 }}>
8989
<Card>
9090
<Card.Body>

0 commit comments

Comments
 (0)