mirror of https://github.com/zulip/zulip.git
integrations: Move `markdown` class to element which has markdown text.
We move the markdown class to the element which directly contains the markdown text. This avoids markdown properties being applied to other elements unintentionally like `h1` elements.
This commit is contained in:
parent
09572fe09b
commit
b859cc4a3d
|
@ -15,7 +15,7 @@
|
|||
<div class="portico-landing integrations">
|
||||
<div class="main">
|
||||
<div class="padded-content">
|
||||
<div class="inner-content markdown">
|
||||
<div class="inner-content">
|
||||
|
||||
<div class="integration-main-text">
|
||||
<header>
|
||||
|
@ -148,7 +148,7 @@
|
|||
|
||||
{% for integration in integrations_dict.values() %}
|
||||
{% if integration.is_enabled() %}
|
||||
<div id="{{ integration.name }}" class="integration-instructions">
|
||||
<div id="{{ integration.name }}" class="integration-instructions markdown">
|
||||
<div class="help-content"></div>
|
||||
<p style="font-size:11px; font-style:italic;">
|
||||
Logos are trademarks of their respective owners.
|
||||
|
|
Loading…
Reference in New Issue