Design comparison
SolutionDesign
Solution retrospective
Hey! I built this vanilla challenge. Any thoughts and/or advices you may have would be appreciated :D
Community feedback
- @prantiknoorPosted over 2 years ago
Your solution is simple and awesome.😊
The hover effect of buttons is quite fast. If the transition time were a little higher, It would be more awesome.
You used
flexbox
to center themain
component. You can try outgrid
to center that. It is easier thanflexbox
./* main { display: flex; justify-content: center; align-items: center; } */ main { display: grid; place-content: center; }
1
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