react-dates-demo
react-dates-demo copied to clipboard
Different than examples of react-date?
Why this demo has different codebase than the example in react-date storybook? if you notice the arrow of the input is cropped.
If someone faces similar issue, arrow is cropped because of the box-sizing
, set below code in css file and it would work fine:-
*{
box-sizing: border-box;
}