fix: allow innerGrid on the wrapper

This commit is contained in:
Stefan Imhoff
2023-04-13 16:15:19 +02:00
parent 00c06fce72
commit c5819d5772
2 changed files with 5 additions and 2 deletions

View File

@@ -28,7 +28,8 @@ const wrapperClasses = cx(
{
'grid-cols-16 md:grid-cols-10 xl:grid-cols-8 3xl:grid-cols-6':
innerGrid && grid === 'narrow',
}
},
{ 'gap-y-gap': gap }
);
---