JSFiddle - React, Tailwind, and code Playground

by Emily Humphrey

HTML

<button>Hello</button>
<a>Hello</a>
<a href="#0">Hello</a>
<input value="Hello" />
<textarea>Hello</textarea>

CSS

button,
input,
a {
  &:focus,
  &:focus-within {
    outline: #8bc1fd solid 5px !important;
    outline: -webkit-focus-ring-color solid 5px !important;
  }
}