HaDo Dev• 290
@hadodev
Posted
Hi @BiswajitHemram,
Your desktop solution look great. These are my recomendations:
- Don't forget the active states. You must add the
:hover
and:focus-visible
to the learn more links/buttons. For example:
button:hover,
button:focus-visible {
background-color: white;
}
- Pay attention to the responsive design. Mobile-first workflow is a good approach and it's widely use nowadays. You start your design in a mobile screen and after you add media queries
@media
or container queries@container
to adjust the design for wider screens. In your desgin, you need to change theborder-radius
property of the first and the last sections.
Keep going and happy coding!
Marked as helpful
0