@websolutespa/bom-llm 0.0.43 → 0.0.44
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 +28 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/umd/index.css
CHANGED
|
@@ -1464,30 +1464,43 @@ llm-embed {
|
|
|
1464
1464
|
max-width: calc(100% + var(--margin) * 2);
|
|
1465
1465
|
margin: 0 var(--negative-margin);
|
|
1466
1466
|
padding: 4px var(--margin);
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
/*
|
|
1470
|
-
/*
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1467
|
+
flex-wrap: wrap;
|
|
1468
|
+
/* if device has a touch screen */
|
|
1469
|
+
/* if device has no touch screen */
|
|
1470
|
+
/*
|
|
1471
|
+
@media (any-pointer: fine) {
|
|
1472
|
+
}
|
|
1473
|
+
*/
|
|
1474
1474
|
}
|
|
1475
|
-
|
|
1476
|
-
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1475
|
+
@media (any-pointer: coarse) {
|
|
1476
|
+
.llm .llm__prompt-suggestions .llm__suggestions {
|
|
1477
|
+
flex-wrap: nowrap;
|
|
1478
|
+
overflow-x: auto;
|
|
1479
|
+
overflow-y: hidden;
|
|
1480
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
1481
|
+
/* Hide scrollbar for IE, Edge and Firefox */
|
|
1482
|
+
}
|
|
1483
|
+
.llm .llm__prompt-suggestions .llm__suggestions::-webkit-scrollbar {
|
|
1484
|
+
display: none;
|
|
1485
|
+
}
|
|
1486
|
+
.llm .llm__prompt-suggestions .llm__suggestions {
|
|
1487
|
+
-ms-overflow-style: none;
|
|
1488
|
+
/* IE and Edge */
|
|
1489
|
+
scrollbar-width: none;
|
|
1490
|
+
/* Firefox */
|
|
1491
|
+
}
|
|
1492
|
+
.llm .llm__prompt-suggestions .llm__suggestions .llm__pill {
|
|
1493
|
+
white-space: nowrap;
|
|
1494
|
+
}
|
|
1480
1495
|
}
|
|
1481
1496
|
.llm .llm__prompt-suggestions .llm__suggestions .llm__pill {
|
|
1482
|
-
|
|
1497
|
+
box-shadow: var(--llm-shadow-xs);
|
|
1483
1498
|
}
|
|
1484
1499
|
@media (min-width: 1024px) {
|
|
1485
1500
|
.llm .llm__prompt-suggestions .llm__suggestions {
|
|
1486
1501
|
max-width: calc(100% + 8px);
|
|
1487
1502
|
margin: 0 -4px;
|
|
1488
1503
|
padding: 4px;
|
|
1489
|
-
flex-wrap: wrap;
|
|
1490
|
-
overflow: hidden;
|
|
1491
1504
|
}
|
|
1492
1505
|
}
|
|
1493
1506
|
.llm .llm__prompt-suggestions .swiper {
|