features: Suppress plan-comparison subheadings.

This commit is contained in:
Karl Stolley 2024-02-13 11:13:26 -06:00 committed by Tim Abbott
parent 873232d25e
commit 76220fdc2c
2 changed files with 15 additions and 1 deletions

View File

@ -14,7 +14,7 @@
{% include 'zerver/landing_nav.html' %}
<div class="portico-pricing showing-cloud">
<div class="portico-pricing features-page showing-cloud">
<div class="body-bg">
<div class="body-bg__layer"></div>
</div>

View File

@ -594,3 +594,17 @@
}
}
}
.features-page {
/* Always suppress subheadings on /features */
#cloud-plan-comparison,
#self-hosted-plan-comparison,
#all-plan-comparison {
display: none !important;
}
/* Maintain the margin-top ordinarily set on
the subheadings. */
.comparison-tabs {
margin-top: 64px;
}
}