@BarrickUARSubmitted 4 months ago
Feriansyah
@dev-feriansyahAll comments
- @dev-feriansyahPosted 4 months ago
Greetings @BarrickUAR 👋, Congratulations, it looks very close to the design!
I have some suggestions about your code that might help you
- I see you use a lot of flexbox and setting width in a lot of element. I assume you changed this value a lot to match it with design. You can use
box-sizing: border-box;
in all elements, it really help you specify specific width or height of element without adding padding, border or margin on it. you can read more on this blog by Cindy Kandie - Try removing letter-spacing, I think it looks closer to design without it
Hope you find this helpful. Keep coding and happy coding, too! 😁
0 - I see you use a lot of flexbox and setting width in a lot of element. I assume you changed this value a lot to match it with design. You can use