Last active
June 6, 2022 04:22
-
-
Save Oxicode/2da3e920bf3d6319336f72fb352dfe0c to your computer and use it in GitHub Desktop.
Disabling the Tailwind input ring
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* globals.css */ | |
.without-ring { | |
@apply focus:ring-0 focus:ring-offset-0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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