edisdev / vue-datepicker-ui

Datepicker Component For Vue
https://edisdev.github.io/vue-datepicker-ui/
MIT License
427 stars 30 forks source link

the width of the input form exceeds the smartphone screen #52

Open ubay1 opened 2 years ago

ubay1 commented 2 years ago

I use this library together with the bootstrap modal, and after I publish this input form it exceeds the smartphone screen, whereas if it is opened on a laptop there is no problem.

cgcummings commented 8 months ago

Hey just ran into this issue. I am able to override and fix via:

@media (max-width: 640px) { .v-calendar .content, .v-calendar .input-field { flex-direction: column !important; } }