neridaj
neridaj

Reputation: 2193

Twitter Bootstrap - How to customize padding

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

Answers (1)

Amit
Amit

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

Related Questions