JSFiddle - React, Tailwind, and code Playground

by Mathijs Rutgers

HTML

<button>Submit</button>

CSS

button {
    display: block;
    background: grey;
    padding: 5px;
    border: none;
    box-shadow: 0 0 0 3px grey;
}
button:hover {
   /*What should go here?*/
    outline: 1px dotted white;
}
button:focus {
    outline: 1px dotted white;
}