mirror of https://github.com/zulip/zulip.git
settings: Remove inline-block from subsection-parent elements.
This commit removes inline-block class from the subsection-parent elements in notification settings because we do not need different subsections to be inline. This was working correctly till now because the widths of the subsections were large enough to not be able to fit in same line.
This commit is contained in:
parent
e67b4cf499
commit
8b638648dc
|
@ -46,7 +46,7 @@
|
|||
</table>
|
||||
</div>
|
||||
|
||||
<div class="desktop_notifications m-10 inline-block subsection-parent">
|
||||
<div class="desktop_notifications m-10 subsection-parent">
|
||||
|
||||
<h3 class="inline-block">{{t "Desktop message notifications" }}</h3>
|
||||
<div class="alert-notification"></div>
|
||||
|
@ -91,7 +91,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mobile_notifications m-10 inline-block subsection-parent">
|
||||
<div class="mobile_notifications m-10 subsection-parent">
|
||||
|
||||
<h3 class="inline-block">{{t "Mobile message notifications" }}</h3>
|
||||
<div class="alert-notification"></div>
|
||||
|
@ -106,7 +106,7 @@
|
|||
{{/each}}
|
||||
</div>
|
||||
|
||||
<div class="email_message_notifications m-10 inline-block subsection-parent">
|
||||
<div class="email_message_notifications m-10 subsection-parent">
|
||||
|
||||
<h3 class="inline-block">{{t "Email message notifications" }}</h3>
|
||||
<div class="alert-notification"></div>
|
||||
|
@ -132,7 +132,7 @@
|
|||
{{/each}}
|
||||
</div>
|
||||
|
||||
<div class="other_email_notifications m-10 inline-block subsection-parent">
|
||||
<div class="other_email_notifications m-10 subsection-parent">
|
||||
|
||||
<h3 class="inline-block">{{t "Other emails" }}</h3>
|
||||
<div class="alert-notification"></div>
|
||||
|
|
Loading…
Reference in New Issue