Design comparison
SolutionDesign
Solution retrospective
Hello everyone! Here I made changes to my solution to this challenge. I followed your suggestions and comments on my previous solution. Thank you!
Community feedback
- @Mohammedabbas7Posted about 2 years ago
congratulation on completing the challenge. I just have a single comment on your solution you just forget to add a hover and focus state on the button. you can add this code to change the background color when you hover with the mouse or use the keyboard to navigate and also you can add a transition property on the button to make the transition smooth.
button { transition: background-color .5s; } button: hover, button: focus { cursor: pointer; background-color: hsl(159, 63%, 16%); }
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