It looks like the padding-right and padding-left added to each col-* along with the float: left and the 970px container class width is causing some odd wrapping behavior.
It looks like just increasing the width for this media query (min-width: 992px) solves the issue, but I'm not sure that's the right approach since FE isn't my specialty.
It looks like the
padding-right
andpadding-left
added to eachcol-*
along with thefloat: left
and the970px
container class width is causing some odd wrapping behavior.It looks like just increasing the width for this media query (
min-width: 992px
) solves the issue, but I'm not sure that's the right approach since FE isn't my specialty.