blob: 22d07f91b5523faac79e2436b3676e8680f0cb85 (
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
|
.title {
@apply text-h-sm md:text-h-lg font-semibold;
}
.voucher-section {
@apply w-full;
}
.voucher-card {
@apply w-full md:w-11/12 h-3/4 rounded-xl border items-center border-gray-200 shadow-md p-4 flex gap-x-4 ;
}
.voucher-image {
@apply bg-gray-100 rounded-lg w-4/12 h-fit object-contain object-center;
}
.voucher-content {
@apply flex-1 flex flex-col;
}
.voucher-title {
@apply font-medium text-body-1 leading-6 mb-1;
}
.voucher-desc {
@apply text-gray-800 line-clamp-2 text-caption-1;
}
.voucher-bottom {
@apply flex justify-between mt-2;
}
.voucher-code-desc {
@apply text-gray-500 text-caption-1;
}
.voucher-code {
@apply text-red-700 font-medium;
}
.voucher-copy {
@apply bg-gray-200 hover:bg-danger-500 text-danger-500 hover:text-white transition-colors rounded-lg flex items-center justify-center px-6;
}
|