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

View file

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