mirror of https://github.com/zulip/zulip.git
hello: Move call to action button style to a specific class.
This commit is contained in:
parent
f810833df5
commit
c35ab98d03
|
@ -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;
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue