Check out this code snippet:
<div class="container-fluid mt-5">
<div class="row">
<div class="col-10">
Hello
<br>
Hello
</div>
<div class="col-2">
<input type="checkbox" class="w-100 h-100">
</div>
</div>
</div>
Here is how the checkbox appears on desktop screens: https://i.sstatic.net/zndhj.png
And this is the checkbox on mobile screens: https://i.sstatic.net/xpDQk.png
I'm puzzled by the change in checkbox size on desktop screens. Shouldn't it remain consistent with the sizing I specified using h-100
and w-100
for both mobile and desktop views?