I am utilizing Angular
and Angular Material
for date control display.
See the code snippet below:
<input type="date" (change)="validateDateRange($event,true, index)" class="form-control oot-start-date align-middle" name="from" formControlName="startDate" />
.oot-start-date {
width: 170px;
display: inline-block;
}
.align-middle {
vertical-align: middle;
}
With the current configuration, the calendar control appears as shown in the image below...
https://i.sstatic.net/cI6Pw.png
Is there a way to properly align the panel with the date control?