@ifarontiSubmitted about 1 year ago
Can you spot any issue I should fix?
Can you spot any issue I should fix?
Looks good! When you set the grid-template-columns it looks like you're doing so in a way that creates 5 separate columns no matter the width of the window. This can cause issues if your screen's width isn't wide enough to display all 5 columns, and will result in some of the columns being off screen and inaccessible. A potential fix would be to use repeat function:
grid-template-columns: repeat(auto-fit, minmax(/minimum size for each column/, [/maximum size for each column/));
This would dynamically determine the number of columns based on the width of the window.