-1

Would like to get rid of the blue outline that appears around button when focused.

this is being rendered as jsx element. I've tried the following

<Button      
outline= 'none'>
{content}
</Button 

also tried inline styling

style={{ outline: 'none'}}

1 Answers1

0

With inline style it was setting bowShadow = 'none' that resolved this.

<Button style= {{boxShadow='none'}}>



  • There is an error in your code, try this ` – Vincent Rouilhac Sep 15 '22 at 11:28