Wishlist View

This commit is contained in:
Belen Curcio
2020-10-13 14:15:20 -03:00
parent 0d94957944
commit 68cc1f145f
8 changed files with 84 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
.root {
@apply grid grid-cols-12 w-full gap-6 px-3 py-6 border-b border-primary-accent;
&:nth-child(3n + 1) {
& .productBg {
@apply bg-violet;
}
}
&:nth-child(3n + 2) {
& .productBg {
@apply bg-pink;
}
}
&:nth-child(3n + 3) {
& .productBg {
@apply bg-blue;
}
}
}