lisichatbot 1.0.4 → 1.0.5
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/index.js +17 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -554,9 +554,25 @@ function injectStyles() {
|
|
|
554
554
|
margin-bottom: 16px;
|
|
555
555
|
}
|
|
556
556
|
|
|
557
|
-
/* Options wrapper spacing */
|
|
557
|
+
/* Options wrapper spacing and layout */
|
|
558
558
|
[data-chat-element="options-wrapper"] {
|
|
559
559
|
margin-bottom: 20px;
|
|
560
|
+
display: flex;
|
|
561
|
+
flex-direction: column;
|
|
562
|
+
gap: 12px;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
/* Individual option spacing */
|
|
566
|
+
[data-chat-input-element="container"] {
|
|
567
|
+
margin-bottom: 0;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
/* Remove any default stretching */
|
|
571
|
+
[data-chat-element="single-select-input"],
|
|
572
|
+
[data-chat-element="multi-select-input"] {
|
|
573
|
+
width: auto;
|
|
574
|
+
max-width: 100%;
|
|
575
|
+
display: inline-flex;
|
|
560
576
|
}
|
|
561
577
|
|
|
562
578
|
/* Messages container padding */
|