4
0
forked from crowetic/commerce
commerce/components/product/ProductGrid/ProductGrid.module.css
2020-10-03 11:33:31 -03:00

27 lines
538 B
CSS

.root {
--row-height: calc(100vh - 80px - 56px);
@apply grid grid-cols-1 lg:grid-cols-3 lg:grid-rows-4 w-full;
& > * {
@apply row-span-1 lg:col-span-1 h-full bg-black box-border;
}
& > div:nth-child(6n + 1) {
@apply row-span-2 lg:col-span-2 bg-violet;
min-height: var(--row-height);
}
& > div:nth-child(6n + 5) {
@apply row-span-2 lg:col-span-2 bg-blue;
min-height: var(--row-height);
}
& > div:nth-child(6n + 3) {
@apply bg-pink;
}
& > div:nth-child(6n + 6) {
@apply bg-cyan;
}
}