Mobile first Static Github job listings with vanila javascript
Design comparison
Solution retrospective
Still having issues with the filter section of the project, any help will be highly appreciated. Thanks
Community feedback
- @tomzacchiaPosted about 4 years ago
Hi Abdulazeez,
Great work so far. Here are some things that I noticed:
-
For the language elements, in some cases the text itself is larger than its parent. This is due to the fact that on line 123 of your CSS you have the following: .languages { width: 100px; padding: 5px auto; } The div with className .languages has a fixed width regardless of the text inside of it. I recommend that you removed the width property from this div.
-
Pay more attention to the smaller details in the design, such as:
- The job titles are black in the original design
- There are also tags such as "new" and "featured" that are missing in your application
Hope this helps, Tom
0@horler408Posted about 4 years ago@tomzacchia Thanks for your suggestions, though I noticed some of these things too especially the 2nd observation and am currently working on them. Any idea on how to use check box to filter the search?
0@tomzacchiaPosted about 4 years ago@horler408 you can add an event listener to the search on and have a handler function that would do the following:
- filter the jobs array based on the search keyword
- re-render the jobCards based on the filtered array
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