CSS Grid: Limit Item Size Using the minmax FunctionPassed

you did not teach people how to combine commands but require from them to know it!

what you teach is:
grid-template-columns: repeat(3, 1fr );
grid-template-columns: minmax(90px, 1fr);

solution is:
grid-template-columns: repeat(3, minmax(90px, 1fr));