Design comparison
SolutionDesign
Community feedback
- @danielmrz-devPosted 10 months ago
Hello @keyule!
Your project looks great!
I have one suggestion for you to improve it even more:
- Your card is not vertically centered because you used
min-height: 85vh
. To fix it, you just need to change it to100vh
, like this:
body { min-height: 100vh; display: flex; /* it works with grid too */ justify-content: center; align-items: center; }
I hope it helps!
Other than that, great job!
0 - Your card is not vertically centered because you used
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