NFT preview card component solution

Solution retrospective
Any tips to improve will be greatly appreciated. Thanks in advance.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @frontendparham
Great Work, a NOTE:
- this piece of code (transition: 0.4s ease;) will not work.
- Correct: transition: opacity 0.4s; or transition: all 0.4s;
- The transition property is specified as one or more single-property transitions, separated by commas.
- Each single-property transition describes the transition that should be applied to a single property (or the special values all and none).
- So don't forget to write the property name.
Join 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