
Design comparison
Solution retrospective
most proud of my use of grids
What challenges did you encounter, and how did you overcome them?not many challenges
Community feedback
- @khatri2002Posted 2 months ago
Hi! The UI of your solution looks perfect! Great work on the visuals! However, I noticed that the solution was supposed to be interactive, and this aspect is currently missing.
Here's some guidance to make it interactive:
- The text
Daily
,Weekly
, andMonthly
should actually be buttons, not just static text. These represent timelines, and users should be able to click on them to switch between different views. - Upon selecting a timeline, the numbers (representing activity details) on the activity cards should update accordingly.
- A
data.json
file is provided for this challenge. You can use it to fetch and display the activity data dynamically, based on the selected timeline.
That said, the UI design is highly impressive! Great job on that front! Keep up the excellent work! 🚀
0 - The text
- @MarziaJaliliPosted 2 months ago
Hey there!
Some sort of suggestion:
- set the code below in the body selector to center the card:
body { display: grid; place-items: center; min-height: 100vh; }
- Make sure that the card is the only child element of the
<body>
.
If not wrapp everything nested inside
<body>
with the<main>
element. It will look something like this:<body> <main> <!-- every element nested inside --> </main> </body>
Other than this your solution is spot on.
Keep up the grind 🫡
0
Please log in to post a comment
Log in with GitHubJoin 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