I'm using grid in my nav element that contains 7 nested elements. I want the first one to be at least 2x larger than the others. I tried to use this:
grid-template-columns: 2fr repeat(auto-fit, minmax(100px, 1fr));
But it doesn't work, in the console it shows that is invalid property value, why? How can I do this in another way?