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 ae0de07a1b
commit 1fcbb69f50

View File

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