Is there a way to adjust the height of an input field (form-control) using Bootstrap 5? I'd love to see an example of how to make it taller or shorter - any suggestions?
https://i.sstatic.net/YM1Os.png
Here's a sample code snippet for reference:
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>