Having a simple password field using Bootstrap grid classes:
<div class="container">
<div class="row">
<label class="col-sm-2" for="passwordField">Password</label>
<input class="col-sm-3" id="passwordField" type="password" v-model="password"/>
<button class="col-sm-3">Login</button>
</div>
</div>
Noticing that in mobile view, the left space at the label "Password" is larger than the left space at the input field: https://i.sstatic.net/7nYwz.png
This layout issue might not look too great. Is there a way to improve this without adding extra CSS, or is it a Bootstrap quirk?!
Check it out here: https://jsfiddle.net/0tkco9ws/1/