@wix/web5-core 1.56.0 → 1.56.1

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.
@@ -0,0 +1,172 @@
1
+ .web5-empty-state {
2
+ width: 100%;
3
+ /* Subtract the host's fixed top-nav height (measured into this var by
4
+ inject-host-nav-offset.ts) so the centered empty state fills exactly the
5
+ space below the nav instead of a full viewport — which would overflow by
6
+ the nav height and add unnecessary vertical scroll. Falls back to 0px
7
+ (full 100dvh) when embedded without a pinned host nav. */
8
+ min-height: calc(100dvh - var(--web5-window-scroll-top-offset, 0px));
9
+ padding:
10
+ clamp(1.5rem, 4vw, 3rem)
11
+ clamp(1.5rem, 4vw, 3rem)
12
+ clamp(2rem, 5vw, 3rem);
13
+ box-sizing: border-box;
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: center;
17
+ position: relative;
18
+ overflow: hidden;
19
+ }
20
+
21
+ /* Decorative full-bleed layer behind the content (e.g. a hero image). */
22
+ .web5-empty-state__bg {
23
+ position: absolute;
24
+ inset: 0;
25
+ z-index: 0;
26
+ pointer-events: none;
27
+ overflow: hidden;
28
+ }
29
+
30
+ .web5-empty-state__inner {
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ width: 100%;
35
+ position: relative;
36
+ z-index: 1;
37
+ }
38
+
39
+ /* ── Hero (left-aligned) variant ── */
40
+ .web5-empty-state--start .web5-empty-state__inner {
41
+ justify-content: flex-start;
42
+ }
43
+
44
+ .web5-empty-state--start .web5-empty-state__content {
45
+ align-items: flex-start;
46
+ text-align: left;
47
+ width: min(100%, var(--pi-empty-start-max-w, 38rem));
48
+ }
49
+
50
+ .web5-empty-state--start .web5-empty-state__copy {
51
+ align-items: flex-start;
52
+ }
53
+
54
+ .web5-empty-state--start .web5-empty-state__prompt {
55
+ width: 100%;
56
+ }
57
+
58
+ .web5-empty-state__content {
59
+ display: flex;
60
+ flex-direction: column;
61
+ align-items: center;
62
+ gap: var(--pi-empty-stack-gap, 2rem);
63
+ width: min(100%, var(--pi-empty-max-w, 60rem));
64
+ text-align: center;
65
+ }
66
+
67
+ .web5-empty-state__copy {
68
+ display: flex;
69
+ flex-direction: column;
70
+ align-items: center;
71
+ gap: 0.875rem;
72
+ max-width: min(100%, 42rem);
73
+ }
74
+
75
+ .web5-empty-state__eyebrow {
76
+ margin: 0;
77
+ color: var(--pi-empty-eyebrow-color, var(--pi-field-text));
78
+ font-family: var(--pi-field-font-family);
79
+ font-size: 0.875rem;
80
+ font-weight: 400;
81
+ line-height: 1.4;
82
+ letter-spacing: -0.01em;
83
+ }
84
+
85
+ .web5-empty-state__title {
86
+ margin: 0;
87
+ color: var(--pi-empty-title-color, var(--pi-field-text));
88
+ font-family: var(--pi-field-font-family);
89
+ font-size: clamp(2rem, 4vw, 2.625rem);
90
+ font-weight: 600;
91
+ line-height: 1.1;
92
+ letter-spacing: -0.03em;
93
+ text-wrap: balance;
94
+ }
95
+
96
+ .web5-empty-state__description {
97
+ margin: 0;
98
+ color: var(--pi-empty-description-color, var(--pi-field-text));
99
+ font-family: var(--pi-field-font-family);
100
+ font-size: clamp(1rem, 1.3vw, 1.125rem);
101
+ line-height: 1.45;
102
+ text-wrap: pretty;
103
+ }
104
+
105
+ .web5-empty-state__prompt {
106
+ width: min(100%, 42.1875rem);
107
+ }
108
+
109
+ .web5-empty-state__prompt .web5-prompt-shell__panel {
110
+ padding-block: 0;
111
+ background: transparent;
112
+ box-shadow: none;
113
+ backdrop-filter: none;
114
+ }
115
+
116
+ .web5-empty-state__prompt .web5-prompt-shell__stack {
117
+ gap: var(--pi-stack-gap);
118
+ }
119
+
120
+ .web5-empty-state__prompt .web5-prompt-search__inner {
121
+ width: min(100%, 42.1875rem);
122
+ }
123
+
124
+ .web5-empty-state__prompt .web5-prompt-field {
125
+ /* Start as a single line; the textarea auto-grows (SearchSection) up to the
126
+ input max-height (5 lines) below. */
127
+ min-height: var(--pi-field-min-h, 3.5rem);
128
+ align-items: center;
129
+ padding: 0.75rem 1.3125rem;
130
+ border-radius: var(--pi-home-entry-field-radius, var(--pi-field-radius-multiline));
131
+ background: var(--pi-field-bg);
132
+ box-shadow: var(--pi-field-shadow);
133
+ }
134
+
135
+ .web5-empty-state__prompt .web5-prompt-input {
136
+ min-height: 1.75rem;
137
+ /* Grow up to 5 lines (5 × 1.5rem line-height), then scroll. */
138
+ max-height: 7.5rem;
139
+ padding-right: 3.375rem;
140
+ color: #52575b;
141
+ font-size: 1rem;
142
+ line-height: 1.5rem;
143
+ }
144
+
145
+ .web5-empty-state__prompt .web5-prompt-input::placeholder {
146
+ color: var(--pi-field-placeholder);
147
+ }
148
+
149
+ .web5-empty-state__prompt .web5-prompt-actions {
150
+ top: auto;
151
+ right: 0.875rem;
152
+ bottom: 0.8125rem;
153
+ transform: none;
154
+ }
155
+
156
+ @media (max-width: 48rem) {
157
+ .web5-empty-state {
158
+ padding:
159
+ 1.5rem
160
+ 1.25rem
161
+ 2rem;
162
+ }
163
+
164
+ .web5-empty-state__content {
165
+ gap: 1.5rem;
166
+ }
167
+
168
+ .web5-empty-state__copy {
169
+ max-width: 32rem;
170
+ }
171
+
172
+ }
@@ -0,0 +1,538 @@
1
+ .web5-prompt-shell {
2
+ width: 100%;
3
+ pointer-events: none;
4
+ }
5
+
6
+ .web5-prompt-shell--collapsed {
7
+ pointer-events: none;
8
+ display: flex;
9
+ justify-content: flex-end;
10
+ width: 100%;
11
+ }
12
+
13
+ .web5-prompt-shell__stage {
14
+ position: relative;
15
+ width: 100%;
16
+ min-height: calc(
17
+ var(--pi-field-min-h) + var(--pi-panel-padding-block-start) +
18
+ var(--pi-panel-padding-block-end)
19
+ );
20
+ }
21
+
22
+ .web5-prompt-shell__content {
23
+ position: relative;
24
+ z-index: 1;
25
+ width: 100%;
26
+ pointer-events: none;
27
+ transform-origin: right bottom;
28
+ transition: opacity 220ms ease, transform 260ms ease, filter 220ms ease;
29
+ }
30
+
31
+ .web5-prompt-shell--collapsed .web5-prompt-shell__content {
32
+ position: absolute;
33
+ right: 0;
34
+ bottom: 0;
35
+ width: min(100vw, var(--pi-content-max-w));
36
+ opacity: 0;
37
+ transform: translate3d(160px, 30px, 0) scale(0.26, 0.72);
38
+ filter: blur(1px);
39
+ pointer-events: none;
40
+ }
41
+
42
+ .web5-prompt-shell--collapsed .web5-prompt-shell__stage {
43
+ width: max-content;
44
+ min-height: auto;
45
+ }
46
+
47
+ .web5-prompt-shell__collapsed-button {
48
+ position: absolute;
49
+ right: 24px;
50
+ bottom: 16px;
51
+ z-index: 2;
52
+ display: inline-flex;
53
+ align-items: center;
54
+ justify-content: center;
55
+ min-height: var(--pi-collapsed-btn-min-h);
56
+ padding: var(--pi-collapsed-btn-padding-y) var(--pi-collapsed-btn-padding-x);
57
+ border: 1px solid var(--pi-collapsed-btn-border);
58
+ border-radius: var(--pi-collapsed-btn-radius);
59
+ isolation: isolate;
60
+ overflow: hidden;
61
+ background: var(--pi-collapsed-btn-bg);
62
+ box-shadow: var(--pi-collapsed-btn-shadow);
63
+ color: var(--pi-collapsed-btn-fg);
64
+ font-family: var(--pi-field-font-family);
65
+ font-size: var(--pi-collapsed-btn-font-size);
66
+ font-weight: var(--pi-collapsed-btn-font-weight);
67
+ line-height: var(--pi-collapsed-btn-line-height);
68
+ white-space: nowrap;
69
+ cursor: pointer;
70
+ transition: opacity 220ms ease, transform 260ms ease,
71
+ box-shadow var(--pi-transition-fast);
72
+ opacity: 0;
73
+ transform: translate3d(18px, 14px, 0) scale(0.92);
74
+ pointer-events: none;
75
+ }
76
+
77
+ .web5-prompt-shell__collapsed-button::before,
78
+ .web5-prompt-shell__collapsed-button::after {
79
+ content: '';
80
+ position: absolute;
81
+ pointer-events: none;
82
+ }
83
+
84
+ .web5-prompt-shell__collapsed-button::before {
85
+ top: 50%;
86
+ left: 50%;
87
+ z-index: -2;
88
+ width: 240%;
89
+ height: 760%;
90
+ transform: translate(-50%, -50%) rotate(0deg);
91
+ transform-origin: center;
92
+ background-image: var(--pi-collapsed-btn-decoration);
93
+ opacity: var(--pi-collapsed-btn-decoration-opacity);
94
+ animation: web5-prompt-border-snake 3.4s linear infinite;
95
+ }
96
+
97
+ .web5-prompt-shell__collapsed-button::after {
98
+ inset: 1px;
99
+ z-index: -1;
100
+ border-radius: inherit;
101
+ background: var(--pi-collapsed-btn-inner-bg);
102
+ }
103
+
104
+ .web5-prompt-shell--collapsed .web5-prompt-shell__collapsed-button {
105
+ position: relative;
106
+ right: auto;
107
+ bottom: auto;
108
+ margin: 0 24px 16px 0;
109
+ opacity: 1;
110
+ transform: translate3d(0, 0, 0) scale(1);
111
+ pointer-events: auto;
112
+ }
113
+
114
+ .web5-prompt-shell__collapsed-button:hover {
115
+ box-shadow: var(--pi-collapsed-btn-hover-shadow);
116
+ }
117
+
118
+ .web5-prompt-shell--collapsed .web5-prompt-shell__collapsed-button:hover {
119
+ transform: translate3d(0, -1px, 0) scale(1);
120
+ }
121
+
122
+ .web5-prompt-shell__collapsed-button:focus-visible {
123
+ outline: 2px solid var(--pi-submit-active-bg);
124
+ outline-offset: 2px;
125
+ }
126
+
127
+ @keyframes web5-prompt-border-snake {
128
+ 100% {
129
+ transform: translate(-50%, -50%) rotate(1turn);
130
+ }
131
+ }
132
+
133
+ .web5-prompt-shell__panel {
134
+ width: 100%;
135
+ padding-block: var(--pi-panel-padding-y);
136
+ background: var(--pi-panel-bg);
137
+ box-shadow: var(--pi-panel-shadow);
138
+ backdrop-filter: blur(var(--pi-panel-blur));
139
+ pointer-events: none;
140
+ }
141
+
142
+ .web5-prompt-shell__stack {
143
+ display: flex;
144
+ flex-direction: column;
145
+ }
146
+
147
+ .web5-prompt-shell__stack:has(.web5-prompt-shell__chips--visible) {
148
+ gap: var(--pi-stack-gap);
149
+ }
150
+
151
+ .web5-prompt-shell__stack--chips-top {
152
+ flex-direction: column-reverse;
153
+ }
154
+
155
+ .web5-prompt-shell__chips {
156
+ display: flex;
157
+ flex-wrap: wrap;
158
+ justify-content: center;
159
+ gap: var(--pi-chip-gap);
160
+ margin: 0 auto;
161
+ width: 100%;
162
+ max-width: 835px;
163
+ overflow: hidden;
164
+ transition: transform var(--pi-transition-medium),
165
+ opacity var(--pi-transition-medium), max-height var(--pi-transition-medium);
166
+ pointer-events: auto;
167
+ }
168
+
169
+ .web5-prompt-shell__chips--visible {
170
+ transform: translateY(0);
171
+ opacity: 1;
172
+ max-height: 8rem;
173
+ overflow: visible;
174
+ }
175
+
176
+ .web5-prompt-shell__chips--hidden {
177
+ transform: translateY(1rem);
178
+ opacity: 0;
179
+ max-height: 0;
180
+ overflow: hidden;
181
+ }
182
+
183
+ .web5-prompt-chip {
184
+ display: inline-flex;
185
+ align-items: center;
186
+ justify-content: center;
187
+ gap: 6px;
188
+ padding: var(--pi-chip-padding-y) var(--pi-chip-padding-x);
189
+ border: 1px solid var(--pi-chip-border, transparent);
190
+ border-radius: var(--pi-chip-radius);
191
+ background: var(--pi-chip-bg);
192
+ box-shadow: var(--pi-chip-shadow);
193
+ color: var(--pi-chip-text);
194
+ font-family: var(--pi-field-font-family);
195
+ font-size: var(--pi-chip-font-size);
196
+ font-weight: 500;
197
+ line-height: var(--pi-chip-line-height);
198
+ text-decoration: none;
199
+ white-space: nowrap;
200
+ overflow: hidden;
201
+ text-overflow: ellipsis;
202
+ transition: background-color var(--pi-transition-fast);
203
+ }
204
+
205
+ .web5-prompt-chip:hover {
206
+ background: var(--pi-chip-hover-bg);
207
+ }
208
+
209
+ /* Inset ring so the focus indicator isn't clipped by the chips container's overflow: hidden */
210
+ .web5-prompt-chip:focus-visible {
211
+ outline: none;
212
+ box-shadow: inset 0 0 0 2px rgba(128, 0, 177, 0.8), var(--pi-chip-shadow);
213
+ }
214
+
215
+ .web5-prompt-search {
216
+ display: flex;
217
+ align-items: center;
218
+ justify-content: center;
219
+ }
220
+
221
+ .web5-prompt-search__inner {
222
+ position: relative;
223
+ width: min(100%, var(--pi-content-max-w));
224
+ min-width: min(100%, var(--pi-content-min-w));
225
+ margin-inline: auto;
226
+ pointer-events: auto;
227
+ }
228
+
229
+ .web5-prompt-field-wrap {
230
+ position: relative;
231
+ display: flex;
232
+ justify-content: center;
233
+ }
234
+
235
+ .web5-prompt-field {
236
+ position: relative;
237
+ display: flex;
238
+ align-items: center;
239
+ width: 100%;
240
+ min-height: var(--pi-field-min-h);
241
+ padding: var(--pi-field-padding-top) var(--pi-field-padding-right)
242
+ var(--pi-field-padding-bottom) var(--pi-field-padding-left);
243
+ border: var(--pi-field-border-width) solid var(--pi-field-border);
244
+ border-radius: var(--pi-field-radius-pill);
245
+ background: var(--pi-field-bg);
246
+ box-shadow: var(--pi-field-shadow);
247
+ transition: min-height var(--pi-transition-medium),
248
+ border-radius var(--pi-transition-medium),
249
+ padding-top var(--pi-transition-medium),
250
+ padding-bottom var(--pi-transition-medium);
251
+ }
252
+
253
+ .web5-prompt-field--multiline {
254
+ align-items: flex-end;
255
+ padding-top: var(--pi-field-padding-top-multiline);
256
+ border-radius: var(--pi-field-radius-multiline);
257
+ }
258
+
259
+ .web5-prompt-input {
260
+ appearance: none;
261
+ display: block;
262
+ flex: 1;
263
+ width: 100%;
264
+ min-width: 0;
265
+ min-height: var(--pi-field-line-height);
266
+ max-height: calc(var(--pi-field-max-h) - var(--pi-field-line-height));
267
+ padding: 0 56px 0 0;
268
+ border: 0;
269
+ outline: none;
270
+ background: transparent;
271
+ color: var(--pi-field-text);
272
+ caret-color: var(--pi-field-caret);
273
+ font-family: var(--pi-field-font-family);
274
+ font-size: var(--pi-field-font-size);
275
+ line-height: var(--pi-field-line-height);
276
+ resize: none;
277
+ overflow-y: auto;
278
+ }
279
+
280
+ .web5-prompt-field--multiline .web5-prompt-input {
281
+ line-height: var(--pi-field-line-height-multiline);
282
+ }
283
+
284
+ .web5-prompt-input::placeholder {
285
+ color: var(--pi-field-placeholder);
286
+ }
287
+
288
+ .web5-prompt-input:focus {
289
+ outline: none !important;
290
+ box-shadow: none !important;
291
+ border-color: transparent;
292
+ }
293
+
294
+ .web5-prompt-input:focus-visible {
295
+ outline: none !important;
296
+ box-shadow: none !important;
297
+ border-color: transparent;
298
+ }
299
+
300
+ .web5-prompt-input::-webkit-scrollbar {
301
+ width: 6px;
302
+ }
303
+
304
+ .web5-prompt-input::-webkit-scrollbar-thumb {
305
+ background: rgba(0, 0, 0, 0.18);
306
+ border-radius: 999px;
307
+ }
308
+
309
+ .web5-prompt-actions {
310
+ position: absolute;
311
+ right: var(--pi-field-padding-right);
312
+ top: 50%;
313
+ display: flex;
314
+ align-items: center;
315
+ gap: 8px;
316
+ transform: translateY(-50%);
317
+ }
318
+
319
+ .web5-prompt-hint {
320
+ display: inline-flex;
321
+ align-items: center;
322
+ gap: 4px;
323
+ margin-right: 4px;
324
+ color: var(--pi-field-placeholder);
325
+ font-family: var(--pi-field-font-family);
326
+ font-size: 12px;
327
+ line-height: 1;
328
+ white-space: nowrap;
329
+ pointer-events: none;
330
+ user-select: none;
331
+ }
332
+
333
+ .web5-prompt-hint__key {
334
+ display: inline-flex;
335
+ align-items: center;
336
+ justify-content: center;
337
+ min-width: 16px;
338
+ padding: 1px 4px;
339
+ border: 1px solid var(--pi-field-placeholder);
340
+ border-radius: 3px;
341
+ background: transparent;
342
+ font-family: inherit;
343
+ font-size: 11px;
344
+ line-height: 1;
345
+ }
346
+
347
+ @media (pointer: coarse) {
348
+ .web5-prompt-hint {
349
+ display: none;
350
+ }
351
+ }
352
+
353
+ .web5-prompt-field--multiline .web5-prompt-actions {
354
+ top: auto;
355
+ bottom: var(--pi-submit-bottom);
356
+ transform: none;
357
+ }
358
+
359
+ .web5-prompt-voice {
360
+ display: inline-flex;
361
+ align-items: center;
362
+ justify-content: center;
363
+ width: 32px;
364
+ height: 32px;
365
+ padding: 0;
366
+ border: 0;
367
+ background: transparent;
368
+ color: #5f6368;
369
+ cursor: pointer;
370
+ transition: color var(--pi-transition-fast);
371
+ }
372
+
373
+ .web5-prompt-voice:hover {
374
+ color: #202124;
375
+ }
376
+
377
+ .web5-prompt-submit {
378
+ display: inline-flex;
379
+ align-items: center;
380
+ justify-content: center;
381
+ width: var(--pi-submit-size);
382
+ height: var(--pi-submit-size);
383
+ padding: 0;
384
+ border: 0;
385
+ border-radius: var(--pi-submit-radius);
386
+ background: var(--pi-submit-bg);
387
+ color: var(--pi-submit-fg);
388
+ cursor: pointer;
389
+ transition: background-color var(--pi-transition-fast),
390
+ color var(--pi-transition-fast), transform var(--pi-transition-fast);
391
+ }
392
+
393
+ .web5-prompt-submit:hover:not(:disabled) {
394
+ transform: scale(1.05);
395
+ }
396
+
397
+ .web5-prompt-submit:disabled {
398
+ cursor: default;
399
+ }
400
+
401
+ .web5-prompt-submit--active {
402
+ background: var(--pi-submit-active-bg);
403
+ color: var(--pi-submit-active-fg);
404
+ }
405
+
406
+ .web5-prompt-submit svg,
407
+ .web5-prompt-send-icon,
408
+ .web5-prompt-voice svg {
409
+ width: var(--pi-submit-icon-size);
410
+ height: var(--pi-submit-icon-size);
411
+ flex-shrink: 0;
412
+ }
413
+
414
+ .web5-prompt-submit--active:hover {
415
+ transform: translateY(-1px);
416
+ }
417
+
418
+ .web5-prompt-progress {
419
+ display: flex;
420
+ align-items: center;
421
+ justify-content: center;
422
+ padding-block: 2rem;
423
+ }
424
+
425
+ .web5-prompt-progress__indicator {
426
+ display: flex;
427
+ align-items: center;
428
+ justify-content: center;
429
+ width: 3rem;
430
+ height: 3rem;
431
+ border: 1px solid rgba(0, 0, 0, 0.08);
432
+ border-radius: 999px;
433
+ background: #ffffff;
434
+ box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.35);
435
+ }
436
+
437
+ .web5-prompt-progress__message {
438
+ margin-left: 0.75rem;
439
+ color: #4b5563;
440
+ font-size: 0.875rem;
441
+ line-height: 1.25rem;
442
+ }
443
+
444
+ @media (max-width: 768px) {
445
+ .web5-prompt-shell__collapsed-button {
446
+ right: 12px;
447
+ bottom: 12px;
448
+ width: auto;
449
+ max-width: 100%;
450
+ min-height: 44px;
451
+ padding: 10px 20px;
452
+ line-height: 24px;
453
+ }
454
+
455
+ .web5-prompt-shell--collapsed .web5-prompt-shell__collapsed-button {
456
+ margin: 0 12px 12px 0;
457
+ }
458
+
459
+ .web5-prompt-shell--collapsed .web5-prompt-shell__content {
460
+ transform: translate3d(88px, 18px, 0) scale(0.3, 0.72);
461
+ }
462
+
463
+ .web5-prompt-shell__panel {
464
+ padding-inline: var(--pi-panel-mobile-padding-inline);
465
+ background: var(--pi-panel-mobile-bg);
466
+ }
467
+
468
+ .web5-prompt-shell__chips {
469
+ align-items: stretch;
470
+ justify-content: flex-start;
471
+ gap: var(--pi-chip-mobile-gap);
472
+ max-width: none;
473
+ overflow-y: var(--pi-chip-mobile-overflow-y);
474
+ }
475
+
476
+ .web5-prompt-field {
477
+ min-width: 0;
478
+ }
479
+
480
+ .web5-prompt-input {
481
+ font-size: max(16px, var(--pi-field-font-size));
482
+ }
483
+
484
+ .web5-prompt-chip {
485
+ width: 100%;
486
+ justify-content: flex-start;
487
+ padding: 10px 18px;
488
+ background: transparent;
489
+ box-shadow: none;
490
+ font-size: 16px;
491
+ line-height: 20px;
492
+ white-space: normal;
493
+ }
494
+
495
+ .web5-prompt-chip .web5-prompt-send-icon {
496
+ display: none;
497
+ }
498
+
499
+ .web5-prompt-field--focused,
500
+ .web5-prompt-field--multiline {
501
+ min-height: 135px;
502
+ align-items: stretch;
503
+ padding-top: 14px;
504
+ padding-bottom: 12px;
505
+ border-radius: var(--pi-field-radius-multiline);
506
+ }
507
+
508
+ .web5-prompt-field--focused .web5-prompt-input,
509
+ .web5-prompt-field--multiline .web5-prompt-input {
510
+ padding-right: 72px;
511
+ line-height: 24px;
512
+ }
513
+
514
+ .web5-prompt-field--focused .web5-prompt-actions,
515
+ .web5-prompt-field--multiline .web5-prompt-actions {
516
+ top: auto;
517
+ bottom: 12px;
518
+ transform: none;
519
+ }
520
+
521
+ .web5-prompt-field--focused .web5-prompt-submit,
522
+ .web5-prompt-field--multiline .web5-prompt-submit {
523
+ width: 40px;
524
+ height: 40px;
525
+ }
526
+
527
+ .web5-prompt-field--focused .web5-prompt-submit svg,
528
+ .web5-prompt-field--focused .web5-prompt-send-icon,
529
+ .web5-prompt-field--multiline .web5-prompt-submit svg,
530
+ .web5-prompt-field--multiline .web5-prompt-send-icon {
531
+ width: 20px;
532
+ height: 20px;
533
+ }
534
+
535
+ .web5-prompt-hint {
536
+ display: none;
537
+ }
538
+ }