fix: don't wrap button contents in two lines (#34887)

This commit is contained in:
Simon Knott 2025-02-24 21:15:21 +01:00 committed by GitHub
parent dbbdabfd1b
commit 1a8f00c45f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ const CopyPromptButton: React.FC<{
value={prompt}
description='Copy as Prompt'
copiedDescription={<>Copied <span className='codicon codicon-copy' style={{ marginLeft: '5px' }}/></>}
style={{ width: '90px', justifyContent: 'center' }}
style={{ width: '120px', justifyContent: 'center' }}
/>
);
};