agentgui 1.0.111 → 1.0.112

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.111",
3
+ "version": "1.0.112",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/static/index.html CHANGED
@@ -363,15 +363,13 @@
363
363
  }
364
364
 
365
365
  .messages-wrapper {
366
- max-width: var(--msg-max-width);
367
- margin: 0 auto;
366
+ max-width: 100%;
367
+ margin: 0;
368
368
  width: 100%;
369
369
  padding: 1.5rem 2rem;
370
370
  display: flex;
371
371
  flex-direction: column;
372
372
  min-height: 100%;
373
- padding-left: calc(max(2rem, (100vw - 900px) / 2));
374
- padding-right: calc(max(2rem, (100vw - 900px) / 2));
375
373
  }
376
374
 
377
375
  #output {