vsn4ik / bootstrap-checkbox

A checkbox component based on Bootstrap framework.
https://vsn4ik.github.io/bootstrap-checkbox/
MIT License
213 stars 61 forks source link

Vertical checkbox top-right corner is not rounded #25

Open clytras opened 7 years ago

clytras commented 7 years ago

The top right conrner is not rounded because both btn-group and btn-group-vertical class are applied:

image

<div is="0" class="btn-group btn-group-vertical m-b" tabindex="0">
 <a is="0" class="btn active btn-danger">No</a>
 <a is="1" class="btn btn-default">Yes</a>
</div>

It displays just fine if I remove the btn-group class from the div:

image

<div is="0" class="btn-group-vertical m-b" tabindex="0">
 <a is="0" class="btn active btn-danger">No</a>
 <a is="1" class="btn btn-default">Yes</a>
</div>