@websolutespa/bom-llm 0.0.25 → 0.0.26
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/CHANGELOG.md +6 -0
- package/dist/umd/index.css +15 -3
- package/dist/umd/index.js +1639 -25
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/umd/index.css
CHANGED
|
@@ -2497,6 +2497,9 @@ llm-embed {
|
|
|
2497
2497
|
font-size: clamp(var(--llm-typography-label1-font-size-min) * 1px, var(--llm-typography-label1-font-size-min) * 1px + (100vw - 375px) / 1545 * (var(--llm-typography-label1-font-size-max) - var(--llm-typography-label1-font-size-min)), var(--llm-typography-label1-font-size-max) * 1px);
|
|
2498
2498
|
font-weight: 700;
|
|
2499
2499
|
}
|
|
2500
|
+
.llm .llm__product-grow {
|
|
2501
|
+
flex-grow: 1;
|
|
2502
|
+
}
|
|
2500
2503
|
.llm .llm__product-title {
|
|
2501
2504
|
line-height: 1;
|
|
2502
2505
|
font-family: var(--llm-font-primary);
|
|
@@ -2505,7 +2508,11 @@ llm-embed {
|
|
|
2505
2508
|
letter-spacing: var(--llm-typography-body4-letter-spacing);
|
|
2506
2509
|
font-size: clamp(var(--llm-typography-body4-font-size-min) * 1px, var(--llm-typography-body4-font-size-min) * 1px + (100vw - 375px) / 1545 * (var(--llm-typography-body4-font-size-max) - var(--llm-typography-body4-font-size-min)), var(--llm-typography-body4-font-size-max) * 1px);
|
|
2507
2510
|
font-weight: 100;
|
|
2508
|
-
|
|
2511
|
+
overflow: hidden;
|
|
2512
|
+
text-overflow: ellipsis;
|
|
2513
|
+
display: -webkit-box;
|
|
2514
|
+
-webkit-line-clamp: 2;
|
|
2515
|
+
-webkit-box-orient: vertical;
|
|
2509
2516
|
}
|
|
2510
2517
|
.llm .llm__product-title:hover {
|
|
2511
2518
|
text-decoration: underline;
|
|
@@ -2518,7 +2525,11 @@ llm-embed {
|
|
|
2518
2525
|
letter-spacing: var(--llm-typography-body5-letter-spacing);
|
|
2519
2526
|
font-size: clamp(var(--llm-typography-body5-font-size-min) * 1px, var(--llm-typography-body5-font-size-min) * 1px + (100vw - 375px) / 1545 * (var(--llm-typography-body5-font-size-max) - var(--llm-typography-body5-font-size-min)), var(--llm-typography-body5-font-size-max) * 1px);
|
|
2520
2527
|
font-weight: 100;
|
|
2521
|
-
|
|
2528
|
+
overflow: hidden;
|
|
2529
|
+
text-overflow: ellipsis;
|
|
2530
|
+
display: -webkit-box;
|
|
2531
|
+
-webkit-line-clamp: 2;
|
|
2532
|
+
-webkit-box-orient: vertical;
|
|
2522
2533
|
}
|
|
2523
2534
|
.llm .llm__product-prices {
|
|
2524
2535
|
display: flex;
|
|
@@ -2577,7 +2588,8 @@ llm-embed {
|
|
|
2577
2588
|
|
|
2578
2589
|
.llm .llm__products {
|
|
2579
2590
|
width: 100%;
|
|
2580
|
-
|
|
2591
|
+
max-width: 1440px;
|
|
2592
|
+
margin: 3rem auto;
|
|
2581
2593
|
}
|
|
2582
2594
|
.llm .llm__product {
|
|
2583
2595
|
height: 100%;
|