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;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.portico-landing.hello .call-to-action-bottom .button {
|
.portico-landing.hello .call-to-action-bottom .styled-button {
|
||||||
display: table;
|
display: table;
|
||||||
margin: 20px auto 0;
|
margin: 20px auto 0;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
|
|
|
@ -533,17 +533,17 @@
|
||||||
<div class="padded-content call-to-action-bottom">
|
<div class="padded-content call-to-action-bottom">
|
||||||
<h1>Experience Zulip today!</h1>
|
<h1>Experience Zulip today!</h1>
|
||||||
{% if root_domain_landing_page %}
|
{% 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') }}
|
{{ _('See plans and pricing') }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if register_link_disabled %}
|
{% if register_link_disabled %}
|
||||||
{% elif only_sso %}
|
{% elif only_sso %}
|
||||||
<a href="{{ url('login-sso') }}" class="button green">
|
<a href="{{ url('login-sso') }}" class="styled-button button green">
|
||||||
{{ _('Log in now') }}
|
{{ _('Log in now') }}
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ url('register') }}" class="button green">
|
<a href="{{ url('register') }}" class="styled-button button green">
|
||||||
{{ _('Sign up now') }}
|
{{ _('Sign up now') }}
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue