We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The api mapping for OpenWeather doesn't correctly adjust for day/night on codes 803 and 804, instead pointing to same icon as the neutral mapping.
Neutral:
.wi-owm-803:before { content: "\f013"; } .wi-owm-night-804:before { content: "\f013"; }
Day:
.wi-owm-day-803:before { content: "\f013"; } .wi-owm-day-804:before { content: "\f013"; }
Night:
.wi-owm-night-803:before { content: "\f013"; } .wi-owm-night-804:before { content: "\f013"; }
I believe day should be using f002 and night should be using f086.
f002
f086
Additionally, for consistency with the night icon, I believe the mapping for .wi-owm-day-801 should be changed to icon f00c.
.wi-owm-day-801
f00c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The api mapping for OpenWeather doesn't correctly adjust for day/night on codes 803 and 804, instead pointing to same icon as the neutral mapping.
Neutral:
Day:
Night:
I believe day should be using
f002
and night should be usingf086
.Additionally, for consistency with the night icon, I believe the mapping for
.wi-owm-day-801
should be changed to iconf00c
.The text was updated successfully, but these errors were encountered: