blob: 4e294f1ca20584afdb802a54fbf5692d23cb4ca9 (
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
|
.card {
@apply border border-gray_r-7
rounded-lg
h-fit
py-3;
}
.title {
@apply font-semibold text-h-md;
}
.badgeType {
@apply p-2 flex gap-x-1.5 rounded-md border border-danger-500 text-danger-500 items-center;
}
.productSection {
@apply flex gap-x-2 overflow-x-auto overflow-y-hidden mt-4 min-h-[160px];
}
.priceSection {
@apply flex items-center justify-between mt-4;
}
.priceCol {
@apply flex flex-col gap-y-1;
}
.priceRow {
@apply flex gap-x-2 items-center;
}
.basePrice {
@apply line-through;
}
.savingAmt {
@apply text-success-600 font-medium;
}
.price {
@apply text-body-1 text-danger-600 font-medium;
}
.totalItems {
@apply text-gray_r-9;
}
@media only screen and (max-width: 384px) {
.basePrice {
@apply text-[13px];
}
.price{
@apply text-[15px];
}
.totalItems{
@apply text-[11px];
}
}
|