use solid type for font awesome icons

This commit is contained in:
Christopher Fenner 2022-01-05 13:18:08 +01:00 committed by GitHub
parent 060ca43fc8
commit 24bfaaca7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@
{% if config.showWindDirection %} {% if config.showWindDirection %}
<sup> <sup>
{% if config.showWindDirectionAsArrow %} {% if config.showWindDirectionAsArrow %}
<i class="fa fa-long-arrow-up" style="transform:rotate({{ current.windDirection }}deg);"></i> <i class="fas fa-long-arrow-up" style="transform:rotate({{ current.windDirection }}deg);"></i>
{% else %} {% else %}
{{ current.cardinalWindDirection() | translate }} {{ current.cardinalWindDirection() | translate }}
{% endif %} {% endif %}
@ -47,7 +47,7 @@
<div class="normal light indoor"> <div class="normal light indoor">
{% if config.showIndoorTemperature and indoor.temperature %} {% if config.showIndoorTemperature and indoor.temperature %}
<div> <div>
<span class="fa fa-home"></span> <span class="fas fa-home"></span>
<span class="bright"> <span class="bright">
{{ indoor.temperature | roundValue | unit("temperature") | decimalSymbol }} {{ indoor.temperature | roundValue | unit("temperature") | decimalSymbol }}
</span> </span>
@ -55,7 +55,7 @@
{% endif %} {% endif %}
{% if config.showIndoorHumidity and indoor.humidity %} {% if config.showIndoorHumidity and indoor.humidity %}
<div> <div>
<span class="fa fa-tint"></span> <span class="fas fa-tint"></span>
<span class="bright"> <span class="bright">
{{ indoor.humidity | roundValue | unit("humidity") | decimalSymbol }} {{ indoor.humidity | roundValue | unit("humidity") | decimalSymbol }}
</span> </span>