integrations: Fix buggy ol/paragraph spacing.

This appears to caused by trying to reuse this bit of spacing logic
from the Help Center's CSS rules.

I'm not altogether happy with this fix, but it resolves the issue and
we can defer further work until we're ready to clean up the
portico/landing pages CSS more generally.
This commit is contained in:
Tim Abbott 2019-05-20 18:53:03 -07:00
parent d711b1c8ba
commit 734c18f356
2 changed files with 6 additions and 5 deletions

View File

@ -2524,11 +2524,6 @@ nav ul li.active::after {
list-style: circle;
}
.portico-landing.integrations ol > li > p {
max-width: calc(100% - 33px);
margin-top: 0px;
}
.portico-landing code {
display: inline-block;
vertical-align: middle;

View File

@ -386,6 +386,12 @@ body {
top: -2px;
}
/* TODO: Clean up this override */
.portico-landing.integrations ol > li > p {
max-width: calc(100% - 33px) !important;
margin-top: 0px !important;
}
.help-center ol,
.portico-landing.integrations ol {
margin-left: 0;