Design comparison
SolutionDesign
Community feedback
- @correlucasPosted over 2 years ago
👾Hola Leonardo! Congratulations for your solution!
Your component is just perfect, really good work you did building this with flexbox, now all you miss is to align it using flexbox also in the body, see the corrections below to align it:
body { display: flex; min-height: 100vh; font-family: 'Montserrat', sans-serif; background-color: var(--cream); color: var(--dark-grayish-blue); align-items: center; justify-content: center; }
Hope it helps and happy coding!
0 - @iamenochleePosted over 2 years ago
Hey there your container is not well centered, while there are many ways to do that I find using
display:grid; place-items: center;
to the parent element containing the container very easy, I hope this helps you.Keep Coding. Congrats on your solution
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