Created by: andresgalante
Hi! Variables.scss reads:
// Use a higher than normal value to ensure completely rounded edges when
// customizing padding or font-size on labels.
$badge-pill-border-radius: 10rem !default;
If we want to ensure completely rounded edges, that value should be 50%. This PR changes it to:
$badge-pill-border-radius: 50% !default;
What do you think?