We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3233b1 commit 3a31a71Copy full SHA for 3a31a71
src/containers/button.tsx
@@ -3,7 +3,7 @@ import { mint, ivy } from '../colors';
3
4
const Button = styled.button`
5
width: 200px;
6
- max-height: 70px;
+ height: 70px;
7
background-color: ${mint};
8
color: white;
9
cursor: pointer;
src/containers/main.tsx
@@ -26,6 +26,7 @@ const NavBar = styled.div`
26
display: flex;
27
min-height: 120px;
28
justify-content: center;
29
+ align-items: center;
30
`;
31
32
const Map = ReactMapboxGl({
@@ -164,6 +165,7 @@ class Main extends React.Component<Props> {
164
165
onChange={this.onChangeDate}
166
showTimeSelect={true}
167
className="datepicker"
168
+ dateFormat="DD/MM/YYYY [at] HH:mm"
169
/>
170
<Button onClick={this.onGetToResults}>Let's go</Button>
171
</NavBar>
0 commit comments