0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-28 10:24:19 +01:00

move max-width: 100% on .container to the root of the make-container mixin so it's not repeated at compilation (#22947)

This commit is contained in:
Mark Otto 2017-08-13 14:54:57 -07:00 committed by GitHub
parent 54d76805a5
commit bb0cab9f10

View File

@ -3,11 +3,11 @@
// Generate semantic grid columns with these mixins.
@mixin make-container() {
width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: ($grid-gutter-width / 2);
padding-left: ($grid-gutter-width / 2);
width: 100%;
}