nextui icon indicating copy to clipboard operation
nextui copied to clipboard

Make grid take up vertical space

Open onlycs opened this issue 3 years ago • 0 comments

Describe the solution you'd like At the moment, how grids are done is that they take up only horizontal space. Would like to see them be able to take up vertical space see screenshot s

some more info:

how this could work: you could init a grid with predetermined values

<Grid gridSize={4, 4} width={'2em'}, height={'2em'}> // This will init a 4x4 grid where each item has a width and a height of 2em

if you wanted to make an item

<Grid.Item positions={[0, 1], [0, 2], [0, 3]}> // This will make an item taking up the spaces of the positions listed

onlycs avatar Feb 10 '22 22:02 onlycs