templates: Remove unnecessary "margin" class from register template.

Removes the instances of the "margin" class from register.html and
the portico CSS rule. Doing so does not result in any visible
changes in the only place it was being applied the terms of service
checkbox on the page.
This commit is contained in:
Lauryn Menard
2025-10-08 14:50:12 +02:00
committed by Tim Abbott
parent 7bce6361b3
commit 5b5292d138
2 changed files with 3 additions and 7 deletions

View File

@@ -169,9 +169,9 @@ Form is validated both client-side using jquery-validation (see signup.js) and s
{% if default_stream_groups %}
<hr />
<div class="default-stream-groups">
<p class="margin">{{ _('What are you interested in?') }}</p>
<p>{{ _('What are you interested in?') }}</p>
{% for default_stream_group in default_stream_groups %}
<div class="input-group margin">
<div class="input-group">
<label for="id_default_stream_group__{{ default_stream_group.id }}"
class="inline-block checkbox">
<input class="inline-block" type="checkbox"
@@ -218,7 +218,7 @@ Form is validated both client-side using jquery-validation (see signup.js) and s
</div>
{% endif %}
<div class="input-group margin terms-of-service">
<div class="input-group terms-of-service">
{% if terms_of_service %}
<div class="input-group">
{#

View File

@@ -898,10 +898,6 @@ input.new-organization-button {
}
.input-group {
&.margin {
margin: 10px 0;
}
.progress {
margin: 0;
margin-top: 5px;