-1

I used Dropdown from react-bootstrap

code is look like this

<Dropdown className="my-dropdown p-0 m-0">
<Dropdown.Toggle className="p-0 m-0" split={false} variant="light-dropdown">
<Image src="/more@3x.png" style={{ height: '22px' }} />
</Dropdown.Toggle>
....

When I click on it it shows a light blue coloured outline around the image I don't know why it is there.

Not only for this element but I am facing same for Button as well.

<Button
variant="footer">

Please help to fix this.

enter image description here

isherwood
  • 58,414
  • 16
  • 114
  • 157
Meet Patel
  • 61
  • 2
  • 6

1 Answers1

0

I think there is an outline appearing when you click on your button. Try this in your css on your button :

.button:focus,.button:active {
   outline: none;
   box-shadow: none;
}