Skip to content

Commit 1367792

Browse files
committed
Layout tweaks
1 parent 14d5eba commit 1367792

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

webview-ui/src/components/cloud/CloudAgents.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ const CloudAgents: React.FC = () => {
8484
</div>
8585

8686
{agents.length === 0 ? (
87-
<div className="flex items-start gap-3 px-4 py-1 rounded-xl bg-vscode-editor-background">
88-
<Cloud className="size-5 mt-4 shrink-0" />
89-
<p className="text-base text-vscode-descriptionForeground mb-4">
87+
<div className="flex items-center gap-3 px-4 rounded-xl bg-vscode-editor-background">
88+
<Cloud className="size-5 shrink-0" />
89+
<p className="text-base text-vscode-descriptionForeground">
9090
{t("chat:cloudAgents.description")}
9191
<button
9292
className="inline-flex ml-1 cursor-pointer text-vscode-textLink-foreground hover:underline"
@@ -100,7 +100,7 @@ const CloudAgents: React.FC = () => {
100100
{agents.map((agent) => (
101101
<div
102102
key={agent.id}
103-
className="flex items-center relative group gap-2 px-4 py-2 rounded-xl bg-vscode-editor-background hover:bg-vscode-list-hoverBackground cursor-pointer transition-colors"
103+
className="flex items-center relative group gap-2 px-4 py-3 rounded-xl bg-vscode-editor-background hover:bg-vscode-list-hoverBackground cursor-pointer transition-colors"
104104
onClick={() => handleAgentClick(agent.id)}
105105
aria-label={t("chat:cloudAgents.clickToRun", { name: agent.name })}>
106106
{agent.icon ? (

0 commit comments

Comments
 (0)