@sc-360-v2/storefront-cms-library 0.3.55 → 0.3.57
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/dist/builder.js +1 -1
- package/dist/cart-summary.scss +6 -1
- package/dist/checkout.scss +5299 -403
- package/dist/employee-bulk-order.scss +27 -5
- package/dist/icon-list.scss +117 -29
- package/dist/modal.scss +2 -2
- package/dist/section.scss +25 -24
- package/dist/shipping-payments.scss +761 -653
- package/dist/stack.scss +4 -3
- package/dist/types/builder/elements/form-builder/index.d.ts +1 -0
- package/dist/types/builder/interfaces/global.d.ts +1 -1
- package/dist/types/builder/tools/element-edit/checkout.d.ts +1935 -541
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +53 -1
- package/dist/types/helper/helper-functions copy.d.ts +7 -0
- package/package.json +1 -1
package/dist/cart-summary.scss
CHANGED
|
@@ -291,6 +291,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
291
291
|
display: flex;
|
|
292
292
|
flex-direction: column;
|
|
293
293
|
gap: 4px;
|
|
294
|
+
width: 184px;
|
|
294
295
|
// gap: calc(var(--_ctm-lt-im-gp) / 4);
|
|
295
296
|
|
|
296
297
|
.cart_summary_product_content {
|
|
@@ -936,7 +937,11 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
936
937
|
// letter-spacing: var(--_ctm-dn-hg-tt-dn-lr-sg);
|
|
937
938
|
// text-align: var(--_ctm-dn-hg-tt-dn-tt-an);
|
|
938
939
|
// text-decoration: var(--_ctm-dn-hg-tt-dn-ue);
|
|
939
|
-
|
|
940
|
+
display: -webkit-box;
|
|
941
|
+
-webkit-line-clamp: 2; /* Show exactly 2 lines */
|
|
942
|
+
-webkit-box-orient: vertical;
|
|
943
|
+
overflow: hidden;
|
|
944
|
+
text-overflow: ellipsis;
|
|
940
945
|
font-family: var(
|
|
941
946
|
--_ctm-mob-dn-pt-wt-pt-ne-ft-fy,
|
|
942
947
|
var(--_ctm-tab-dn-pt-wt-pt-ne-ft-fy, var(--_ctm-dn-pt-wt-pt-ne-ft-fy))
|