blob: dfbbf5e8093da369a1f804b6b0c0fa13c7f069fe (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
|
.wrapper {
@apply border-b border-gray-300 pb-8;
}
.header {
@apply mb-4 flex items-center text-caption-1 leading-6;
}
.badgeType {
@apply min-w-fit p-2 flex items-center gap-x-1.5 rounded-md border border-danger-500 text-danger-500;
}
.mainProdWrapper {
@apply flex;
}
.image {
@apply md:h-32 md:w-32 md:min-w-[128px]
w-24 h-24 min-w-[96px] 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 w-full;
}
.name {
@apply font-medium;
}
.spacing2 {
@apply h-2;
}
.discPriceSection {
@apply flex flex-col md:flex-row 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;
}
.quantity {
@apply py-2.5 bg-red-100 border border-red-300 text-red-800 h-fit my-auto rounded-md ml-auto font-medium w-12 text-center;
}
|