* fix segmented buttons
changed flex-direction to row
centering is now done by align-items instead of justify-content
this way there is no need for flex property on the .btn inside .btn-group
* Update _input-group.scss
.input-group .form-control {
// Vertically centers the content of the addons within the input group
display: flex;
- flex-direction: column;
- justify-content: center;
+ align-items: center;
&:not(:first-child):not(:last-child) {
@include border-radius(0);
// element above the siblings.
> .btn {
position: relative;
- // Vertically stretch the button and center its content
- flex: 1;
+ .btn {
margin-left: (-$input-btn-border-width);