chrisdavies / tiny-date-picker

A small, modern, dependency-free date picker
https://chrisdavies.github.io/tiny-date-picker/
415 stars 87 forks source link

Tiny CSS fix for RangeDatePicker #101

Closed JosefWN closed 2 years ago

JosefWN commented 5 years ago

An adjustment to the default style for my fellow pixel peepers out there (prevents rounded and clipped border at the "wrong" corners):

.dr-cal-start .dp {
  border-radius: 0 0 0 6px;
}

.dr-cal-end .dp {
  border-radius: 0 0 6px 0;
}