@embrs/user-feedback 1.3.3 → 1.3.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/dist/static/styles.css +6 -3
- package/package.json +1 -1
package/dist/static/styles.css
CHANGED
|
@@ -31,13 +31,16 @@ body {
|
|
|
31
31
|
display: flex;
|
|
32
32
|
height: 100vh;
|
|
33
33
|
overflow: hidden;
|
|
34
|
+
padding: 20px;
|
|
35
|
+
margin: auto;
|
|
36
|
+
max-width: 1200px;
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
/* 面板樣式 */
|
|
37
40
|
.panel {
|
|
38
41
|
display: flex;
|
|
39
42
|
flex-direction: column;
|
|
40
|
-
|
|
43
|
+
outline: 1px solid var(--border);
|
|
41
44
|
}
|
|
42
45
|
|
|
43
46
|
.panel-left {
|
|
@@ -178,7 +181,7 @@ body {
|
|
|
178
181
|
color: var(--text-primary);
|
|
179
182
|
font-size: 14px;
|
|
180
183
|
resize: vertical;
|
|
181
|
-
min-height:
|
|
184
|
+
min-height: 220px;
|
|
182
185
|
font-family: inherit;
|
|
183
186
|
}
|
|
184
187
|
|
|
@@ -195,7 +198,7 @@ body {
|
|
|
195
198
|
.quick-replies {
|
|
196
199
|
display: flex;
|
|
197
200
|
flex-wrap: wrap;
|
|
198
|
-
gap:
|
|
201
|
+
gap: 4px;
|
|
199
202
|
margin-bottom: 16px;
|
|
200
203
|
align-items: center;
|
|
201
204
|
min-height: 40px; /* 確保即使沒有罐頭語也有足夠高度 */
|