In my current project, I am utilizing Angular 13, Bootstrap 5, and ngx-bootstrap-fix-datepicker version 5.
"bootstrap": "^5.1.3",
"ngx-bootstrap": "^8.0.0",
"ngx-bootstrap-fix-datepicker": "^5.6.8",
I am facing an issue where I need to position the calendar on the right side and reduce its size. However, I am unsure how to achieve this. Any suggestions?
<div class="row row-cols-3 pt-3">
<div class="col text-end">
<label for="startDate" class="form-label">Departure Date</label>
</div>
<div class="col-4">
<input type="text " class="form-control form-max-width " name="startDate " [(ngModel)]="startDate " bsDatepicker [maxDate]="endDate " [required]="!!endDate " autocomplete="off ">
</div>
</div>