integrations css: Properly indent multi-paragraph list items.

Since every <li> element is prefixed by a custom list number, in
<li> elements with multiple <p> elements inside, the <p> elements
after the first one did NOT take into account the space occupied
by the custom list number, which resulted in inconsistent
indentation. Now, it does!
This commit is contained in:
Eeshan Garg
2018-04-04 16:06:18 -02:30
committed by Tim Abbott
parent d6cc1cfbc9
commit eb9902e77f

View File

@@ -305,6 +305,15 @@ body {
top: -2px;
}
.portico-landing.integrations ol {
margin-left: 0;
}
.portico-landing.integrations ol > li > p:not(:first-child) {
padding-left: 24px;
margin-left: 5px;
}
.markdown ol > li > ul {
padding-left: 20px;
}