commerce/site/components/wishlist/WishlistCard/WishlistCard.module.css
2022-01-07 11:48:45 -05:00

22 lines
352 B
CSS

.root {
@apply grid grid-cols-12 w-full gap-6 px-3 py-6 border-b border-accent-2 transition duration-100 ease-in-out;
&:nth-child(3n + 1) {
& .productBg {
@apply bg-violet;
}
}
&:nth-child(3n + 2) {
& .productBg {
@apply bg-pink;
}
}
&:nth-child(3n + 3) {
& .productBg {
@apply bg-blue;
}
}
}