File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
webview-ui/src/components/cloud Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ? (
You can’t perform that action at this time.
0 commit comments