Is it possible to adjust the width of specific elements in Bootstrap's grid system without affecting the default customization?
Here is an example of what I am referring to:
For example, I would like to make col-xs-1
smaller as seen in the top row (the row with an add button)
<div class="col col-xs-1">
<input type="checkbox" name="delete[]" />
</div>
<div class="col col-xs-11">
...
</div>
Can this be done?