Twitchtv JSON API project feedback

Hey all, finally after two weeks manage to finish the TwitchTv project. Used vanilla JavaScript, and got to play a CSS grid. I swear most of the time spent on this project was on CSS than the JS code itself and still not happy with page design.
Feedback would be appreciated, here is the link to the codepen https://codepen.io/renmasuo/pen/zjNyYY.
Thanks in advanced.
Resources on web-page design would be appreciated.

1 Like

Think you should avoid using keyup on search as it would call the api for every single letter you are inputing in the field. Just try to filter the initial response and show only regularusers that contain input search value without making further calls to the api. Otherwise good job.

Thanks for the reply, I’ll definitely work on that