Latest solutions
Easybank landing page using TypeScript, NextJS and TailwindCSS
#tailwind-css#typescript#nextSubmitted about 2 years agoInteractive rating component using NextJS and TailwindCS
#next#tailwind-cssSubmitted about 2 years ago
Latest comments
- @matheuzeba@MatheusVSN
Hello Matheus, congratulations on completing the challenge 🎉
I have a suggestion about your centering method. Instead of setting the
.page
elementpadding-top
, you could use thedisplay: grid
,place-content: center
andmin-height: 100vh
on the body element, example:.body { display: grid; place-content: center; min-height: 100vh; }
Using the method above would suit your solution very well as it will align your card to the center of the screen without the need for using
padding-top
on the.page
elementHappy coding 😊
Marked as helpful