Jumbotron occupies more horizontal space on smaller screens
Created by: rlindner81
When using a full-width Jumbotron (outside of any containers) and rendering to a small-width screen (below @screen-sm-min), the jumbotron uses horizontal padding, whereas on bigger screens it does not.
For the small-width screen case, any container inside the Jumbotron also uses the normal horizontal padding, so the Jumbotron's additional usage causes the Grid system to be misaligned there.
Fortunately, it's easy to fix. In less/jumbotron.less line 7 should be
.jumbotron {
padding: @jumbotron-padding 0; /* changed */
margin-bottom: @jumbotron-padding;