Is there a way to customize the top, left, and width styling of the calendar? I'm struggling to find the right approach.
I've been working with this date range picker. Despite trying to add classes and styles, I can't seem to update the appearance of the drop-down calendar.
<div>
<input type="text"
ngxDaterangepickerMd
[(ngModel)]="selected"
[showCustomRangeLabel]="true"
[ranges]="ranges"
[showClearButton]="true"
[showCancel]="true"
[maxDate]="maxDate"
[minDate]="minDate"
[linkedCalendars]="true"
(datesUpdated)="datesUpdated($event)"
readonly/>
</div>