replace envelope-open icon with envelope

This commit is contained in:
alxd 2018-10-16 12:56:52 +02:00
parent 9e23ebfcad
commit 2435527e32
4 changed files with 4 additions and 4 deletions

View file

@ -430,7 +430,7 @@ ul.social {
background-color: @github-bg-color; background-color: @github-bg-color;
} }
a.sc-envelope-o { a.sc-envelope {
background-color: @email-bg-color; background-color: @email-bg-color;
} }

View file

@ -430,7 +430,7 @@ ul.social {
background-color: @github-bg-color; background-color: @github-bg-color;
} }
a.sc-envelope-open { a.sc-envelope {
background-color: @email-bg-color; background-color: @email-bg-color;
} }

File diff suppressed because one or more lines are too long

View file

@ -124,7 +124,7 @@
<ul class="social"> <ul class="social">
{% for name, link in SOCIAL %} {% for name, link in SOCIAL %}
<li><a class="sc-{{ name }}" href="{{ link }}" target="_blank"> <li><a class="sc-{{ name }}" href="{{ link }}" target="_blank">
<i class="{% if name in ['envelope-open', 'rss'] %}fas{% else %}fab{% endif %} fa-{{ name }}"> <i class="{% if name in ['envelope', 'rss'] %}fas{% else %}fab{% endif %} fa-{{ name }}">
</i> </i>
</a></li> </a></li>
{% endfor %} {% endfor %}