mirror of https://github.com/zulip/zulip.git
accounts/go: Change class of bottom text to be consistent.
I changed the class of the two bottom texts to use the same styling as (`/new` and `/complete/github`)
This commit is contained in:
parent
196185db03
commit
4c08a840d0
|
@ -1076,14 +1076,6 @@ button.login-social-button:active {
|
|||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
#create-organization-section {
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
font-weight: 500;
|
||||
margin-left: -28px;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.find-account-link {
|
||||
color: hsl(165, 100.0%, 14.7%);
|
||||
}
|
||||
|
|
|
@ -30,17 +30,17 @@
|
|||
{% endif %}
|
||||
</div>
|
||||
<button id="enter-realm-button" type="submit">{{ _('Next') }}</button>
|
||||
<p id="find-account-section">
|
||||
<p class="bottom-text">
|
||||
{{ _("Don't know your organization URL?") }}
|
||||
<a target="_blank" class="find-account-link" href="/accounts/find/">{{ _("Find your organization.") }}</a>
|
||||
<a target="_blank" href="/accounts/find/">{{ _("Find your organization.") }}</a>
|
||||
</p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="create-organization-section">
|
||||
{{ _("Need to get your group started on Zulip?") }} <a target="_blank" class="find-account-link" href="/new/">{{ _("Create a new organization.") }}</a>
|
||||
<div class="bottom-text">
|
||||
{{ _("Need to get your group started on Zulip?") }} <a target="_blank" href="/new/">{{ _("Create a new organization.") }}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue