Currently, I am incorporating bootstrap-datetimepicker for Vue (found at https://www.npmjs.com/package/vue-bootstrap-datetimepicker) via CDN. The date display looks good, however there is an issue with the month view size when selecting a month.
https://i.sstatic.net/JdUUp.png
This is the code snippet in question:
<datetime-picker v-model="checked_in_time" class="size_datetime_picker"
:config="{
format: 'YYYY-MM-DD HH:mm:ss',
widgetPositioning: {horizontal: 'auto', vertical: 'top'},
showClear: true,
useCurrent: false
}"
name="checked_in_time"></datetime-picker>
I have chosen to import the file through CDN. Any advice on how to troubleshoot this issue would be greatly appreciated.