Having an issue with ngx-bootstrap/datepicker, it works fine on larger screens but not on mobile screens. Any assistance would be appreciated.
https://i.sstatic.net/ZGdyQ.png
When the screen size is reduced to mobile (even on actual mobile devices), it opens in the wrong position.
https://i.sstatic.net/2kP7P.png
Currently using ngx-bootstrap/datepicker version 5.3.2
"ngx-bootstrap": "^5.3.2",
Here is how the datepicker is implemented in the template:
<div class="row">
<div class="col-xs-12 col-12 col-md-6 form-group">
<input type="text"
class="form-control"
style="cursor: pointer"
readonly="true"
[minDate]="minDate"
[maxDate]="dt"
#dp="bsDatepicker"
bsDatepicker [(bsValue)]="bsValue"
(bsValueChange)="UpdateDashboard()">
</div>
</div>