Latest solutions
Product list with cart using React
#reactSubmitted 1 day agoI would like to review how the responsiveness is working, as I think it can be improved — especially:
- In the products grid
- In the order confirmation on mobile: I don’t know why, but I haven’t been able to edit the modal height so that it resizes according to the content
Results summary component using React
#reactSubmitted 7 days agoIt would be nice to check:
- The basic structure of components created with React, in case there is something wrong.
- I couldn't use the font using local file. Which should be the route to indicate in @font-face - src? The file is in public/assets/fonts
Latest comments
- @betty-papSubmitted 21 days ago@guillemfrasquetPosted 1 day ago
Your solution looks great and works as expected!
One thing you could improve is preventing the cart from stretching to fill the full height. Try adding this to the main container:
align-items: flex-start;
But, in general, really good job! I've taken some notes to improve my code! ;)
0 - @NKoshmakSubmitted about 2 months ago@guillemfrasquetPosted 6 days ago
I cannot access to your code. But, what I can see in the live site looks pretty good! It could be improved by centering the main container both vertically and horizontally.
Try something like this:
body, html { display: flex; justify-content: center; align-items: center; }
Then, you should add some styles for the background to make it more similar.
Sadly, I suppose you were practicing React, but I cannot access to that code as the link doesn't work.
Good job :)
0