Commit 87924abd authored by Mark Otto's avatar Mark Otto

Super ghetto fix for preventing navbar overlap when clicking side nav links /cc @fat

parent 869a163e
...@@ -491,11 +491,19 @@ body { ...@@ -491,11 +491,19 @@ body {
* Content blocks for each component or feature. * Content blocks for each component or feature.
*/ */
/* Space things out for fixed navbar */ /* Space things out */
.bs-docs-section + .bs-docs-section { .bs-docs-section + .bs-docs-section {
padding-top: 80px; padding-top: 80px;
} }
/* Ghetto fix for preventing navbar from overlapping */
h1[id],
h2[id],
h3[id] {
padding-top: 80px;
margin-top: -80px;
}
/* /*
* Callouts * Callouts
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment