Felipe Mata
@BoxyPipesnakeAll comments
- @eman2point0Submitted 20 days ago@BoxyPipesnakePosted 13 days ago
Hi! Great job on your project!. I did notice a small issue when viewing it on mobile: there’s a bit of horizontal overflow, which causes a slight scroll.
One way to fix this would be to adjust the .card class. Instead of using width: 384px, try using max-width: 384px. This allows the card to shrink appropriately on smaller screens. Additionally, adding margin will give it some breathing room on the sides, keeping it from touching the edge of the screen.
1 - @GuiDoresSubmitted 26 days ago@BoxyPipesnakePosted 23 days ago
Hi, I noticed you were working to center the div using Flexbox, Two small adjustments that could make the centering perfect is setting min-height: 100vh; on the body and eliminating the padding-top: 50px; also on the body. This ensures the body takes up at least the full viewport height, allowing Flexbox to center the content both vertically and horizontally.
0