evalstate HF Staff commited on
Commit
967c22f
·
verified ·
1 Parent(s): ea8efc7

Increase MRTR flow panel dimensions for presentation readability

Browse files
2026/mcp-connect/animations/mcp-mrtr-flow.html CHANGED
@@ -19,9 +19,9 @@
19
  .flow-window {
20
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
21
  border-radius: 16px;
22
- padding: 20px;
23
- width: 480px;
24
- height: 460px;
25
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
26
  overflow: hidden;
27
  display: flex;
@@ -215,7 +215,7 @@
215
  el.scrollIntoView({ block: 'nearest' });
216
  },
217
  });
218
- scaleCanvas();
219
  </script>
220
  </body>
221
  </html>
 
19
  .flow-window {
20
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
21
  border-radius: 16px;
22
+ padding: 14px;
23
+ width: min(96vw, 560px);
24
+ height: min(96vh, 560px);
25
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
26
  overflow: hidden;
27
  display: flex;
 
215
  el.scrollIntoView({ block: 'nearest' });
216
  },
217
  });
218
+ scaleCanvas({ maxScale: 1.25 });
219
  </script>
220
  </body>
221
  </html>