Reputation: 2193
I just have a simple question regarding the cutomization form for Twitter Bootstrap: When I change the fields for container padding and download the customized bootstrap, the padding I set i.e., 20px doesn't end up in the css. Am I missing something?
Thanks,
J
Upvotes: 0
Views: 2780
Reputation: 2585
/* Minimize the default padding of the bootstrap container */
.container-fluid {
padding: 4px;
}
Include this in your CSS
and enjoy, similarly you can customize other less variables
too.
Upvotes: 2