Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Request path contains unescaped characters
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @ChimiRinzin-HWR

    Submitted

    What are you most proud of, and what would you do differently next time?

    Enlightened with the fact that the elements created in a single iteration and having applied an event listener to an element in the same iteration allows for grouping making the work way easier and less complicated although it's hard to understand.

    What challenges did you encounter, and how did you overcome them?

    Firstly, it was difficult to have event listeners working. Writing them outside of the creation loop seemed difficult and event delegations only worked until the first step. Later, finding out that attaching event listeners work inside the iterations, I was confused throughout the completion process.

    @Zedmc

    Posted

    Great work, very impressed! One task you could work on would be that when the total quantity of a protect is reduced to 0, then it would be removed from the cart. Might be something you would want to check out. Great work honestly.

    1
  • Atul 20

    @Atul1307

    Submitted

    Question - To keep the containers in the center, other than flexbox, what are the preferred best practices?

    @Zedmc

    Posted

    You can do something like this for your MAIN CONTAINER:

    body { display: grid; place-content: center; height: 100vh; }

    Try it and see how it works. Sometimes, you'll need to use other methods or you might need to tweak your current one. All depends on the situation mostly.

    0