@dahawa/hawa-code 1.41.2 → 1.41.4
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/cli.js +198 -198
- package/hands.js +169 -169
- package/package.json +1 -1
- package/webServer/app.js +32 -32
- package/webServer/style.css +26 -0
package/webServer/style.css
CHANGED
|
@@ -1179,6 +1179,8 @@ html, body {
|
|
|
1179
1179
|
display: flex;
|
|
1180
1180
|
flex-direction: column;
|
|
1181
1181
|
gap: 12px;
|
|
1182
|
+
flex: 1;
|
|
1183
|
+
min-height: 0;
|
|
1182
1184
|
}
|
|
1183
1185
|
|
|
1184
1186
|
.model-config-tabs {
|
|
@@ -1186,6 +1188,7 @@ html, body {
|
|
|
1186
1188
|
gap: 8px;
|
|
1187
1189
|
border-bottom: 1px solid var(--border-color);
|
|
1188
1190
|
padding-bottom: 8px;
|
|
1191
|
+
flex-shrink: 0;
|
|
1189
1192
|
}
|
|
1190
1193
|
|
|
1191
1194
|
.model-config-tab {
|
|
@@ -1210,6 +1213,29 @@ html, body {
|
|
|
1210
1213
|
color: var(--accent-blue);
|
|
1211
1214
|
}
|
|
1212
1215
|
|
|
1216
|
+
.model-config-json-wrapper {
|
|
1217
|
+
flex: 1;
|
|
1218
|
+
display: flex;
|
|
1219
|
+
flex-direction: column;
|
|
1220
|
+
min-height: 0;
|
|
1221
|
+
overflow: hidden;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.model-config-json-editor {
|
|
1225
|
+
flex: 1;
|
|
1226
|
+
display: flex;
|
|
1227
|
+
flex-direction: column;
|
|
1228
|
+
min-height: 0;
|
|
1229
|
+
gap: 8px;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.model-config-json-editor .setting-json-textarea {
|
|
1233
|
+
flex: 1;
|
|
1234
|
+
min-height: 500px;
|
|
1235
|
+
height: 100%;
|
|
1236
|
+
resize: none;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1213
1239
|
.model-config-form {
|
|
1214
1240
|
display: flex;
|
|
1215
1241
|
flex-direction: column;
|