I have this piece of css to set the columns of my grid:
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
this works fine but I want to extend this so I can use a percentage value with a max of a certain amount of pixels like so:
grid-template-columns: repeat(auto-fill, minmax(minmax(15%, 180px), 1fr));
But this just gives me colums of a width of 100%. Which is definitely not what i want.
How to I accomplish this?