Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 1 | @import "./order-page"; |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 2 | |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 3 | .filter-options { |
4 | max-height: 300px; | ||||
5 | overflow: auto; | ||||
6 | } | ||||
7 | |||||
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 8 | .address-card { |
9 | cursor: pointer; | ||||
10 | position: relative; | ||||
11 | |||||
12 | .check { | ||||
13 | display: none; | ||||
14 | } | ||||
15 | |||||
16 | &.active { | ||||
prssanna | 60ea785 | 2021-05-18 15:42:13 +0530 | [diff] [blame] | 17 | border-color: var(--primary); |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 18 | |
19 | .check { | ||||
20 | display: inline-flex; | ||||
21 | } | ||||
22 | } | ||||
23 | } | ||||
24 | |||||
25 | .check { | ||||
26 | display: inline-flex; | ||||
prssanna | eb0e596 | 2020-12-24 11:40:33 +0530 | [diff] [blame] | 27 | padding: 0.25rem; |
prssanna | 60ea785 | 2021-05-18 15:42:13 +0530 | [diff] [blame] | 28 | background: var(--primary); |
prssanna | eb0e596 | 2020-12-24 11:40:33 +0530 | [diff] [blame] | 29 | color: white; |
30 | border-radius: 50%; | ||||
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 31 | font-size: 12px; |
32 | width: 24px; | ||||
33 | height: 24px; | ||||
34 | } | ||||
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 35 | |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 36 | .website-list { |
37 | background-color: var(--fg-color); | ||||
38 | padding: 0 var(--padding-lg); | ||||
39 | border-radius: var(--border-radius-md); | ||||
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 40 | |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 41 | @media screen and (max-width: 567px) { |
42 | margin-left: -2rem; | ||||
43 | } | ||||
44 | |||||
45 | &.result { | ||||
46 | border-bottom: 1px solid var(--border-color); | ||||
47 | } | ||||
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 48 | } |
49 | |||||
50 | .transaction-list-item { | ||||
51 | padding: 1rem 0; | ||||
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 52 | border-bottom: 1px solid var(--border-color); |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 53 | position: relative; |
54 | |||||
Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 55 | &:only-child, |
56 | &:last-child { | ||||
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 57 | border: 0; |
58 | } | ||||
59 | |||||
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 60 | a.transaction-item-link { |
61 | position: absolute; | ||||
62 | top: 0; | ||||
63 | left: 0; | ||||
64 | width: 100%; | ||||
65 | height: 100%; | ||||
66 | text-decoration: none; | ||||
67 | opacity: 0; | ||||
68 | overflow: hidden; | ||||
69 | text-indent: -9999px; | ||||
70 | z-index: 0; | ||||
71 | } | ||||
72 | } | ||||
Vishal Dhayagude | 24e79b1 | 2020-04-07 12:18:47 +0530 | [diff] [blame] | 73 | |
74 | .place-order-container { | ||||
75 | text-align: right; | ||||
Shivam Mishra | 7057a80 | 2020-06-17 18:35:38 +0530 | [diff] [blame] | 76 | } |
77 | |||||
78 | .kb-card { | ||||
79 | .card-body > .card-title { | ||||
80 | line-height: 1.3; | ||||
81 | } | ||||
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 82 | } |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 83 | |
Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 84 | .list-item-name, |
85 | .item-total { | ||||
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 86 | font-size: var(--font-size-sm); |
87 | } | ||||
88 | |||||
89 | .items-preview { | ||||
90 | @media screen and (max-width: 567px) { | ||||
91 | margin-top: 1rem; | ||||
92 | } | ||||
Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 93 | } |