Skip to content

Instantly share code, notes, and snippets.

@Oxicode
Last active June 6, 2022 04:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oxicode/2da3e920bf3d6319336f72fb352dfe0c to your computer and use it in GitHub Desktop.
Save Oxicode/2da3e920bf3d6319336f72fb352dfe0c to your computer and use it in GitHub Desktop.
Disabling the Tailwind input ring
/* globals.css */
.without-ring {
@apply focus:ring-0 focus:ring-offset-0;
}
// random-form.js
<input type="checkbox" className="without-ring" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment