react-dates-demo icon indicating copy to clipboard operation
react-dates-demo copied to clipboard

Different than examples of react-date?

Open thian4 opened this issue 6 years ago • 1 comments

Why this demo has different codebase than the example in react-date storybook? if you notice the arrow of the input is cropped.

thian4 avatar Jan 20 '19 03:01 thian4

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;
}

peeyushsingla avatar Jun 30 '20 13:06 peeyushsingla