@rox-stahl

Abdeljalil wahib
@Ajwahib95All comments
- @Ajwahib95
Hey Roxanne, great job on this project!
In terms of the button layout I added the following: #cart { display: flex; justify-content: center; align-items: center; gap: 10px; }
using flexbox gives you more control over the elements and their positioning. I noticed that the svg icon and the text were not properly aligned, so I used justify-content to align them horizontally and align-items for vertical alignment, as for the spacing between the svg and the text, I used the gap property. I hope you find this helpful!
Marked as helpful