Date Input has incorrect sizing in Safari
Created by: stephenreay
In Safari 14.1 (on macOS Big Sur) the following will render 'incorrectly' on Safari - the date input element is over-sized.
The issue isn't related to having another column or another field - but having a regular text input helps to highlight the sizing bug.
FF seems to render it correctly.
<div class="container">
<div class="row g-3">
<div class="col">
<input type="text" class="form-control" placeholder="First name" aria-label="First name">
</div>
<div class="col">
<input type="date" class="form-control"">
</div>
</div>
</div>