We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a557b6 commit d53beb6Copy full SHA for d53beb6
CHANGELOG.md
@@ -2,6 +2,7 @@ Changelog
2
=========
3
## 3.0.3
4
* Localize AM and PM strings
5
+* Make calendar fluid width
6
7
## 3.0.2
8
* Fixes typescript typings not being exposed publicly
css/react-datetime.css
@@ -8,7 +8,7 @@
.rdtPicker {
9
display: none;
10
position: absolute;
11
- width: 250px;
+ min-width: 250px;
12
padding: 4px;
13
margin-top: 1px;
14
z-index: 99999 !important;
src/App.js
@@ -3,6 +3,10 @@
import React from 'react';
import Datetime from './datetime/DateTime';
+// import moment from 'moment';
+// import 'moment/locale/tzm-latn';
+// moment.locale('tzm-latn');
+
class App extends React.Component {
state = {
date: new Date()
0 commit comments