I've created a simple radio button group per the BS4 documentation example, but whenever I select a button, I can't help but notice that the active button border juts out a bit on the right side. From what I can tell, it seems like it's trying to make room for "extra" blank space to the right of the button's input text.
This same "jutting out" to the right occurs on all buttons selected within the group, not just the center button.
<div id="image-viewer-controls-wrapper">
...
<div class="btn-group btn-group-toggle" data-toggle="buttons" id="crop-type">
<label class="btn btn-primary active">
<input type="radio" name="crop_type" id="box" autocomplete="off" checked> Box
</label>
<label class="btn btn-primary">
<input type="radio" name="crop_type" id="line" autocomplete="off"> Line
</label>
<label class="btn btn-primary">
<input type="radio" name="crop_type" id="split" autocomplete="off"> Split
</label>
</div>
</div>
Any ideas what may be causing this display issue?
If it's of any concern, this button-group div within a flexbox parent div.