@adobe-commerce/elsie 1.7.0-beta3 → 1.7.0-beta4
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
CHANGED
|
@@ -45,16 +45,6 @@
|
|
|
45
45
|
height: auto;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.dropin-cart-item__image:is(a),
|
|
49
|
-
.dropin-cart-item__image a {
|
|
50
|
-
display: inline-block;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.dropin-cart-item__image:is(a) img,
|
|
54
|
-
.dropin-cart-item__image a img {
|
|
55
|
-
display: block;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
48
|
.dropin-cart-item__title {
|
|
59
49
|
font: var(--type-body-1-default-font);
|
|
60
50
|
letter-spacing: var(--type-body-1-default-letter-spacing);
|
|
@@ -300,8 +290,7 @@
|
|
|
300
290
|
}
|
|
301
291
|
|
|
302
292
|
/* Smallish / Medium */
|
|
303
|
-
@container cart-item (width >=400px) and (width < 737px) {
|
|
304
|
-
|
|
293
|
+
@container cart-item (width >= 400px) and (width < 737px) {
|
|
305
294
|
.dropin-cart-item__title,
|
|
306
295
|
.dropin-cart-item__sku,
|
|
307
296
|
.dropin-cart-item__attributes,
|
|
@@ -331,8 +320,7 @@
|
|
|
331
320
|
}
|
|
332
321
|
|
|
333
322
|
/* Large */
|
|
334
|
-
@container cart-item (width >=737px) and (width < 1192px) {
|
|
335
|
-
|
|
323
|
+
@container cart-item (width >= 737px) and (width < 1192px) {
|
|
336
324
|
/* Grid */
|
|
337
325
|
.dropin-cart-item__wrapper {
|
|
338
326
|
grid-template-columns: repeat(12, 1fr);
|
|
@@ -410,7 +398,7 @@
|
|
|
410
398
|
}
|
|
411
399
|
|
|
412
400
|
/* Extra Large */
|
|
413
|
-
@container cart-item (width >=1192px) {
|
|
401
|
+
@container cart-item (width >= 1192px) {
|
|
414
402
|
.dropin-cart-item {
|
|
415
403
|
--item-group-spacing: var(--spacing-xxsmall);
|
|
416
404
|
--group-spacing: var(--spacing-small);
|
|
@@ -2,15 +2,14 @@
|
|
|
2
2
|
* Copyright 2024 Adobe
|
|
3
3
|
* All Rights Reserved.
|
|
4
4
|
*
|
|
5
|
-
* NOTICE: Adobe permits you to use, modify, and distribute this
|
|
6
|
-
* file in accordance with the terms of the Adobe license agreement
|
|
7
|
-
* accompanying it.
|
|
5
|
+
* NOTICE: Adobe permits you to use, modify, and distribute this
|
|
6
|
+
* file in accordance with the terms of the Adobe license agreement
|
|
7
|
+
* accompanying it.
|
|
8
8
|
*******************************************************************/
|
|
9
9
|
|
|
10
10
|
.dropin-design a {
|
|
11
11
|
--textColor: var(--color-brand-500);
|
|
12
12
|
color: var(--textColor);
|
|
13
|
-
border: var(--shape-border-width-1) solid transparent;
|
|
14
13
|
text-decoration: none;
|
|
15
14
|
}
|
|
16
15
|
|