in my tailwindcss config i have this configuration
gridTemplateColumns: {
dynamicGrid: 'repeat(auto-fit, minmax(var(--min-value), 1fr))',
},
<div className='grid grid-dynamicGrid[200px] ' >
{Array(6).fill(' ').map((_,i:number) => <p>hello</p>)}
</div>
I want to use my custom template columns grid and pass to it an arbitrary to take place on --min-value variable how to do so? is it even possible?