chore(docs/css): add margin between ul and p elements

Bootstrap CSS was removing the margin after ul elements if they were
descendents of other ul elements. But if the ul was followed by a p
then this looked terrible.

Related to #5953
This commit is contained in:
Peter Bacon Darwin
2014-07-03 12:50:57 +01:00
parent 1d8e42070a
commit 7ca24a8264

View File

@@ -211,6 +211,10 @@ code.highlighted {
color:maroon;
}
ul + p {
margin-top: 10px;
}
.docs-version-jump {
min-width:100%;
max-width:100%;