Fix BUG-033: Update OpenAPI spec with Pro tier rate limit (30 req/min)

Fix BUG-032: Add 375px mobile breakpoint for terminal gap issues
- Reduced container padding to 12px on smallest screens
- Optimized code-section margins and padding
- Improved terminal header and code-block spacing
- Enhanced hero section padding for mobile
This commit is contained in:
OpenClaw Agent 2026-02-15 09:50:04 +00:00
parent 73917551bd
commit 0453176544
2 changed files with 22 additions and 1 deletions

View file

@ -144,6 +144,27 @@ footer .container { display: flex; align-items: center; justify-content: space-b
.trust-grid { gap: 24px; } .trust-grid { gap: 24px; }
} }
/* Fix mobile terminal gaps at 375px and smaller */
@media (max-width: 375px) {
.container {
padding: 0 12px !important;
}
.code-section {
margin: 32px auto 0;
max-width: calc(100vw - 24px) !important;
}
.code-header {
padding: 8px 12px;
}
.code-block {
padding: 12px !important;
font-size: 0.7rem;
}
.hero {
padding: 56px 0 40px;
}
}
/* Additional mobile overflow fixes */ /* Additional mobile overflow fixes */
html, body { html, body {
overflow-x: hidden !important; overflow-x: hidden !important;

View file

@ -3,7 +3,7 @@
"info": { "info": {
"title": "DocFast API", "title": "DocFast API",
"version": "1.0.0", "version": "1.0.0",
"description": "Convert HTML, Markdown, and URLs to pixel-perfect PDFs. Built-in invoice & receipt templates.\n\n## Authentication\nAll conversion and template endpoints require an API key via `Authorization: Bearer <key>` or `X-API-Key: <key>` header.\n\n## Rate Limits\n- Free tier: 100 PDFs/month, 10 req/min\n- Pro tier: 10,000 PDFs/month\n\n## Getting Started\n1. Sign up at [docfast.dev](https://docfast.dev) or via `POST /v1/signup/free`\n2. Verify your email with the 6-digit code\n3. Use your API key to convert documents", "description": "Convert HTML, Markdown, and URLs to pixel-perfect PDFs. Built-in invoice & receipt templates.\n\n## Authentication\nAll conversion and template endpoints require an API key via `Authorization: Bearer <key>` or `X-API-Key: <key>` header.\n\n## Rate Limits\n- Free tier: 100 PDFs/month, 10 req/min\n- Pro tier: 10,000 PDFs/month, 30 req/min\n\n## Getting Started\n1. Sign up at [docfast.dev](https://docfast.dev) or via `POST /v1/signup/free`\n2. Verify your email with the 6-digit code\n3. Use your API key to convert documents",
"contact": { "name": "DocFast", "url": "https://docfast.dev" } "contact": { "name": "DocFast", "url": "https://docfast.dev" }
}, },
"servers": [{ "url": "https://docfast.dev", "description": "Production" }], "servers": [{ "url": "https://docfast.dev", "description": "Production" }],