mirror of https://github.com/zulip/zulip.git
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:
parent
d711b1c8ba
commit
734c18f356
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue