@0xabdulkhaliq
Posted
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have other recommendations regarding your code that I believe will be of great interest to you.
COMPONENT MEASUREMENTS 📐:
- The
min-h-[100vh]
utility class is used to definemin-height: 100vh
, But we don't want to add arbitrary value for the utility class. because setting themin-height: 100vh
is already provided by tailwind css by default
- We want to use
min-h-screen
utility class to definemin-height: 100vh
, you can refer this official documentation to know more in detail
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!