Design comparison
SolutionDesign
Solution retrospective
I would appreciate any feedback on my solution. Kindly let me know the areas I can work on and improve upon. Thank you.
Community feedback
- @palgrammingPosted over 3 years ago
🌟🌟🌟🌟🌟 Overall a nice job on this challenge
Marked as helpful1 - @jmnyaregaPosted over 3 years ago
Impressive work @jeffkobby
I have one suggestion that you can use. Since you are using grid-layout, you don't have to use
position: absolute
to centre cards vertically. You can modifygrid-template-areas
as follows:grid-template-areas: 'supervisor team-builder calculator' 'supervisor karma calculator'; }
Then centre
supervisor
andcalculator
vertically:.supervisor, .calculator { align-self: center; }
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