grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
add this in your .grid class
where
- auto-fit ::will automatically fill as many as grid items within the available space
- minmax :: each item will have min width of 50px and grow equally up to 1fr