How to style focus outline

Style outline that appear when user navigate through you website with keyboard. Here is code example below. Just copy and paste in your child theme CSS file or you can use any code snippet manager.

focus outline
body.bricks-is-frontend :focus-visible {
  outline: 2px dotted red;
  outline-offset: 3px;
  border-radius: 5px;
  z-index: 5;
}

Leave comment or code correction