Design comparison
SolutionDesign
Solution retrospective
Leave any comment on what you think I need to improve on. I was unable to change the color of the svg image, help is welcome.
Community feedback
- @0xabdulkhaliqPosted over 1 year ago
Hello there π. Congratulations on successfully completing the challenge! π
- I have other recommendations regarding your code that I believe will be of great interest to you.
CHANGING COLOR OF SOCIAL ICONS π:
- Looks like those icons are not changing it's color during hover right? we can resolve that issue by using
filter
property in css.
- Just add the following css rule
.socials img:hover { filter: invert(100%) saturate(0%) hue-rotate(321deg) brightness(200%) contrast(102%); }
- Now your icons will be turned into white color during hover.
.
I hope you find this helpful π Above all, the solution you submitted is great !
Happy coding!
Marked as helpful1@nivriiPosted over 1 year ago@0xAbdulKhalid Thank you so much for your feedback. I appreciate your helpπ
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord