summaryrefslogtreecommitdiff
path: root/src-migrate/modules/cart/styles/CartItem.module.css
blob: 8ee3d3e948b5a4c5f260710bafee7a911fd265fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.wrapper {
    @apply border-b border-gray-300 pb-8;
}

.mainProdWrapper {
    @apply flex;
}

.image {
    @apply h-32 w-32 rounded flex p-2 border border-gray-300;
}

.noImage {
    @apply m-auto font-semibold text-gray-400;
}

.details {
    @apply ml-4 flex flex-col gap-y-1;
}

.name {
    @apply font-medium;
}

.spacing2 {
    @apply h-2;
}

.discPriceSection {
    @apply flex gap-x-2.5;
}

.priceBefore {
    @apply line-through text-gray-500;
}

.price {
    @apply text-red-600 font-medium;
}

.savingAmt {
    @apply text-success-600;
}

.weightLabel {
    @apply text-gray-500;
}