Time tracking dashboard

Please log in to post a comment
Log in with GitHubCommunity feedback
- @SergioCasCeb
Hey there good job with the challenge, just a few little things that could help you improve it even more.
- Don't forget to account for smaller screens, in you project anything under a 345px screen width is too squished together and overflows because of this. So you can always implement a
flex-wrap
to allow it to stack in smaller screen sizes. - This is a personal preference but consider maybe giving a
max-width
to your dashboard so that it does not stretch so much in between the mobile and the desktop version. This causes text to be really far apart and it is not good for readability. - Be careful with your spacing in your elements. Your "user" component is too close to the top of the container.
- Finally try to use more appropriate semantic HTML tags for your elements. For example should, the dashboard should not be the main tag itself, it would be better practice to add a div or section inside the main with the class of dashboard.
Marked as helpful - Don't forget to account for smaller screens, in you project anything under a 345px screen width is too squished together and overflows because of this. So you can always implement a
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