fix: ClawHub - move actions to POST, increase output font size

This commit is contained in:
2026-03-24 19:00:30 +01:00
parent 88506aa423
commit 48a452b994
3 changed files with 68 additions and 108 deletions
+2 -2
View File
@@ -539,8 +539,8 @@ export default function ClawHubMarketplace() {
{/* Output */}
{output && (
<div className="bg-slate-900 rounded-lg p-4 border border-slate-600">
<h3 className="text-xs font-semibold text-slate-300 mb-2">Output</h3>
<pre className="text-xs text-slate-300 whitespace-pre-wrap font-mono overflow-auto max-h-48">
<h3 className="text-sm font-semibold text-slate-300 mb-2">Output</h3>
<pre className="text-sm text-slate-200 whitespace-pre-wrap font-mono overflow-auto max-h-64 leading-relaxed">
{output}
</pre>
</div>