evalstate HF Staff commited on
Commit
b5c4e86
·
verified ·
1 Parent(s): 993ccca

Increase MRTR request panel size and allow slight upscale for readability

Browse files
2026/mcp-connect/animations/mcp-mrtr-request.html CHANGED
@@ -19,9 +19,9 @@
19
  .api-window {
20
  background: linear-gradient(135deg, #1e1e1e 0%, #252526 100%);
21
  border-radius: 16px;
22
- padding: 12px;
23
- width: 480px;
24
- height: 460px;
25
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
26
  overflow: hidden;
27
  display: flex;
@@ -257,7 +257,7 @@
257
  }
258
  },
259
  });
260
- scaleCanvas();
261
  </script>
262
  </body>
263
  </html>
 
19
  .api-window {
20
  background: linear-gradient(135deg, #1e1e1e 0%, #252526 100%);
21
  border-radius: 16px;
22
+ padding: 10px;
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;
 
257
  }
258
  },
259
  });
260
+ scaleCanvas({ maxScale: 1.25 });
261
  </script>
262
  </body>
263
  </html>