bunnyquery 1.8.12 → 1.8.13
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/bunnyquery.css +9 -0
- package/bunnyquery.js +2 -2
- package/dist/engine.cjs +1 -1
- package/dist/engine.cjs.map +1 -1
- package/dist/engine.mjs +1 -1
- package/dist/engine.mjs.map +1 -1
- package/package.json +1 -1
- package/src/widget.css +9 -0
package/package.json
CHANGED
package/src/widget.css
CHANGED
|
@@ -1013,6 +1013,15 @@
|
|
|
1013
1013
|
.bq-input-row { flex-direction: column; padding: 0.65rem 0.75rem 0.75rem; }
|
|
1014
1014
|
.bq-input-wrap { width: 100%; flex: 0 0 auto; }
|
|
1015
1015
|
.bq-input-row .btn { width: 100%; }
|
|
1016
|
+
/* `flex-basis: 100%` on these two means FULL WIDTH only while the row is a
|
|
1017
|
+
row. The line above flips it to a column, where the main axis is vertical
|
|
1018
|
+
and the same declaration claims the container's full HEIGHT: the chips
|
|
1019
|
+
then fill the column, and since the row still wraps, the input and Send
|
|
1020
|
+
wrap into a SECOND COLUMN, off to the right of the screen. That is the
|
|
1021
|
+
attachment bug, and it is why it never appeared on the dashboard, whose
|
|
1022
|
+
own mobile block already carries these two lines (agent.vue). */
|
|
1023
|
+
.bq-attachments { flex-basis: auto; width: 100%; }
|
|
1024
|
+
.bq-attachment-warning { flex-basis: auto; width: 100%; }
|
|
1016
1025
|
.bq-bubble { max-width: 100%; }
|
|
1017
1026
|
.bq-page { padding: 2rem 1.25rem; }
|
|
1018
1027
|
.bq-section-title { padding: 0.75rem; }
|