Containers now left-align

The default bootstrap UI still calls for a centered container,
which makes less sense with a left-locked menu. This change
overrides the bootstrap container margin from auto, and sets it
to the grid's gutter size.

Change-Id: Ibd9701887d0a4d5276413221314b40becf3d529f
This commit is contained in:
Michael Krotscheck 2014-04-18 09:57:48 -07:00
parent 3dd638aabb
commit 090dd8b28e

View File

@ -21,6 +21,11 @@ body {
}
.container {
margin-right: (@grid-gutter-width / 2);
margin-left: (@grid-gutter-width / 2);
}
@media (max-width: @screen-xs-max) {
body {
margin-left: @navbar-fixed-left-width-xs;