Skip to content

Commit 3a31a71

Browse files
committedJan 5, 2018
Small update
1 parent f3233b1 commit 3a31a71

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎src/containers/button.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { mint, ivy } from '../colors';
33

44
const Button = styled.button`
55
width: 200px;
6-
max-height: 70px;
6+
height: 70px;
77
background-color: ${mint};
88
color: white;
99
cursor: pointer;

‎src/containers/main.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const NavBar = styled.div`
2626
display: flex;
2727
min-height: 120px;
2828
justify-content: center;
29+
align-items: center;
2930
`;
3031

3132
const Map = ReactMapboxGl({
@@ -164,6 +165,7 @@ class Main extends React.Component<Props> {
164165
onChange={this.onChangeDate}
165166
showTimeSelect={true}
166167
className="datepicker"
168+
dateFormat="DD/MM/YYYY [at] HH:mm"
167169
/>
168170
<Button onClick={this.onGetToResults}>Let's go</Button>
169171
</NavBar>

0 commit comments

Comments
 (0)
Please sign in to comment.