crsten / datepickk

Simple, beautiful and powerful datepicker!
https://crsten.github.io/datepickk
MIT License
165 stars 42 forks source link

Incorrect presentation of the calendar (no matrix format) #46

Open SlitEye opened 5 years ago

SlitEye commented 5 years ago

There are an issue at my Bootstrap project. The generated calender is only shown as picked day list, not as typical calendar form (as matrix). What am I doing wrong?

See my Code and the screenshot (attached to unzip): P3.zip

Screenshot with issue: 2019-03-21_00h49_59

You can see my current project here: www.openskymap.org At this page, please click on the menu item "Calendar" to reproduce my issue.

I use the following libraries:

Tested with:

Elvenmagic commented 5 years ago

You're not doing anything wrong.

Problem is that there's css class name d-table in generated code, which must have display: flex; property. But bootstrap has also defined utility class d-table which has display: table !important. You must override that bootstrap specification with your own css, like #Datepickk .d-table { display: flex !important }