Adjust style

This commit is contained in:
Kyle Shockey
2017-06-16 01:15:44 -07:00
parent 9dc9a857b7
commit 716e0b865b

View File

@@ -10,10 +10,11 @@ export default class OperationLink extends Component {
let description = link.get("description")
return <span>
<div style={{ padding: "7px" }}>{name}{description ? `: ${description}` : ""}</div>
<div style={{ padding: "5px 2px" }}>{name}{description ? `: ${description}` : ""}</div>
<pre>
Operation `{targetOp}`<br /><br />
Parameters {padString(0, JSON.stringify(parameters, null, 2)) || "{}"}<br /><br />
Headers {padString(0, JSON.stringify(headers, null, 2)) || "{}"}<br />
Headers {padString(0, JSON.stringify(headers, null, 2)) || "{}"}<br />
</pre>
</span>
}