hello: Move call to action button style to a specific class.

This commit is contained in:
Aman Agrawal 2021-08-05 12:02:43 +00:00 committed by Tim Abbott
parent f810833df5
commit c35ab98d03
2 changed files with 4 additions and 4 deletions

View File

@ -2115,7 +2115,7 @@ nav {
margin-top: 0;
}
.portico-landing.hello .call-to-action-bottom .button {
.portico-landing.hello .call-to-action-bottom .styled-button {
display: table;
margin: 20px auto 0;
padding: 10px 20px;

View File

@ -533,17 +533,17 @@
<div class="padded-content call-to-action-bottom">
<h1>Experience Zulip today!</h1>
{% if root_domain_landing_page %}
<a href="{{ url('plans') }}" class="download-button button green">
<a href="{{ url('plans') }}" class="download-button styled-button button green">
{{ _('See plans and pricing') }}
</a>
{% endif %}
{% if register_link_disabled %}
{% elif only_sso %}
<a href="{{ url('login-sso') }}" class="button green">
<a href="{{ url('login-sso') }}" class="styled-button button green">
{{ _('Log in now') }}
</a>
{% else %}
<a href="{{ url('register') }}" class="button green">
<a href="{{ url('register') }}" class="styled-button button green">
{{ _('Sign up now') }}
</a>
{% endif %}