@riosst100/pwa-marketplace 2.7.5 → 2.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/CrossSeller/crossSellerBuy.js +20 -10
- package/src/components/CrossSeller/item.js +42 -60
- package/src/components/LinkToOtherStores/index.js +3 -4
- package/src/components/RFQ/index.js +26 -34
- package/src/components/SellerProducts/productContent.js +1 -1
- package/src/overwrites/venia-ui/lib/components/AccountMenu/accountMenu.js +1 -1
- package/src/overwrites/venia-ui/lib/components/Breadcrumbs/breadcrumbs.module.css +2 -2
- package/src/overwrites/venia-ui/lib/components/Header/header.js +4 -4
- package/src/overwrites/venia-ui/lib/components/Header/header.module.css +173 -0
- package/src/overwrites/venia-ui/lib/components/Main/main.module.css +1 -1
- package/src/overwrites/venia-ui/lib/components/MegaMenu/submenu.module.css +1 -1
- package/src/overwrites/venia-ui/lib/components/ProductFullDetail/CustomAttributes/customAttributes.js +1 -1
- package/src/overwrites/venia-ui/lib/components/ProductFullDetail/productFullDetail.js +236 -229
- package/src/overwrites/venia-ui/lib/components/ProductFullDetail/productFullDetail.module.css +73 -25
- package/src/overwrites/venia-ui/lib/components/ProductImageCarousel/carousel.module.css +2 -1
package/src/overwrites/venia-ui/lib/components/ProductFullDetail/productFullDetail.module.css
CHANGED
|
@@ -4,26 +4,36 @@
|
|
|
4
4
|
composes: lg_items-start from global;
|
|
5
5
|
composes: gap-x-10 from global;
|
|
6
6
|
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
7
|
+
.productDetailsMaxContent{
|
|
8
|
+
background: linear-gradient(0deg,#fff 20px,#fff0);
|
|
9
|
+
position: absolute;
|
|
10
|
+
bottom: 0;
|
|
11
|
+
left: 0;
|
|
12
|
+
width: 100%;
|
|
13
|
+
height: 30%;
|
|
14
|
+
content: "";
|
|
15
|
+
}
|
|
16
|
+
.rfqButton {
|
|
17
|
+
padding: 10px 0px;
|
|
18
|
+
}
|
|
19
|
+
.rfqButton span {
|
|
20
|
+
font-size: 14px;
|
|
21
|
+
}
|
|
22
|
+
.customAttributesList {
|
|
23
|
+
padding-left: 0 !important;
|
|
24
|
+
column-count: 2;
|
|
25
|
+
column-gap: 2rem;
|
|
26
|
+
list-style: none;
|
|
27
|
+
}
|
|
28
|
+
.contentContainerTabOverride {
|
|
29
|
+
max-width: none !important;
|
|
19
30
|
}
|
|
20
|
-
|
|
21
31
|
.section {
|
|
22
32
|
composes: border-solid from global;
|
|
23
33
|
composes: border-subtle from global;
|
|
24
34
|
composes: border-t-0 from global;
|
|
25
35
|
composes: border-r-0 from global;
|
|
26
|
-
composes: border-b from global;
|
|
36
|
+
composes: border-b-0 from global;
|
|
27
37
|
composes: border-l-0 from global;
|
|
28
38
|
}
|
|
29
39
|
|
|
@@ -35,7 +45,10 @@
|
|
|
35
45
|
composes: mb-sm from global;
|
|
36
46
|
composes: text-colorDefault from global;
|
|
37
47
|
}
|
|
38
|
-
|
|
48
|
+
:global(.root).makeOfferButton {
|
|
49
|
+
padding-left: 0 !important;
|
|
50
|
+
padding-right: 0 !important;
|
|
51
|
+
}
|
|
39
52
|
.title {
|
|
40
53
|
/* composes: section;
|
|
41
54
|
composes: gap-2 from global;
|
|
@@ -47,6 +60,12 @@
|
|
|
47
60
|
grid-area: title; */
|
|
48
61
|
}
|
|
49
62
|
|
|
63
|
+
.productDetailTabs {
|
|
64
|
+
border-bottom: 1px solid #d3d3d3;
|
|
65
|
+
padding-bottom: 10px;
|
|
66
|
+
margin-bottom: 15px;
|
|
67
|
+
}
|
|
68
|
+
|
|
50
69
|
.productName {
|
|
51
70
|
composes: font-medium from global;
|
|
52
71
|
composes: text-colorDefault from global;
|
|
@@ -74,6 +93,13 @@
|
|
|
74
93
|
|
|
75
94
|
.options {
|
|
76
95
|
grid-area: options;
|
|
96
|
+
border: none;
|
|
97
|
+
}
|
|
98
|
+
.options :global([class*="option"]) {
|
|
99
|
+
border-bottom: none !important;
|
|
100
|
+
}
|
|
101
|
+
.options {
|
|
102
|
+
border: none !important;
|
|
77
103
|
}
|
|
78
104
|
|
|
79
105
|
.formErrors {
|
|
@@ -145,16 +171,6 @@
|
|
|
145
171
|
list-style: none;
|
|
146
172
|
}
|
|
147
173
|
|
|
148
|
-
@media (min-width: 1024px) {
|
|
149
|
-
.details {
|
|
150
|
-
align-self: stretch;
|
|
151
|
-
border-top-width: 1px;
|
|
152
|
-
margin: 0;
|
|
153
|
-
padding-left: 1.5rem;
|
|
154
|
-
padding-right: 1.5rem;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
174
|
.detailsTitle {
|
|
159
175
|
composes: sectionTitle;
|
|
160
176
|
}
|
|
@@ -206,4 +222,36 @@
|
|
|
206
222
|
flex-direction: column;
|
|
207
223
|
row-gap: 16px;
|
|
208
224
|
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
@media only screen and (min-width: 1025px) {
|
|
228
|
+
.root {
|
|
229
|
+
grid-template-areas:
|
|
230
|
+
'left-container right-container';
|
|
231
|
+
grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
|
|
232
|
+
grid-template-rows: repeat(5, min-content) 1fr [fold];
|
|
233
|
+
}
|
|
234
|
+
.details {
|
|
235
|
+
align-self: stretch;
|
|
236
|
+
border-top-width: 1px;
|
|
237
|
+
margin: 0;
|
|
238
|
+
padding-left: 1.5rem;
|
|
239
|
+
padding-right: 1.5rem;
|
|
240
|
+
}
|
|
241
|
+
.title {
|
|
242
|
+
grid-template-columns: 1fr max-content;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
@media only screen and (max-width: 1024px) {
|
|
246
|
+
.root {
|
|
247
|
+
grid-template-areas:
|
|
248
|
+
'left-container right-container';
|
|
249
|
+
grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
|
|
250
|
+
grid-template-rows: repeat(5, min-content) 1fr [fold];
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
@media (max-width: 769px) {
|
|
254
|
+
.leftContainer {
|
|
255
|
+
composes: max-w-[100%] from global;
|
|
256
|
+
}
|
|
209
257
|
}
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.imageContainer {
|
|
25
|
+
composes: h-full from global;
|
|
25
26
|
composes: w-full from global;
|
|
26
27
|
grid-area: 1 / 1 / 2 / 4;
|
|
27
28
|
}
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
.carouselContainer {
|
|
40
|
-
composes: flex items-center justify-center p-4 bg-[#f7f7f8] rounded-md max-h-[
|
|
41
|
+
composes: flex items-center justify-center p-4 bg-[#f7f7f8] rounded-md h-[540px] max-h-[540px] from global;
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
.currentImage_placeholder {
|