Created
February 19, 2019 19:30
-
-
Save hacknug/53ff40d9a9c905f98de0f43e53650cb3 to your computer and use it in GitHub Desktop.
Post-TailwindCSS Preflight CSS Reset
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
* { | |
outline: none !important; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
a { | |
color: inherit; | |
text-decoration: none; | |
} | |
small, | |
input, | |
textarea, | |
select, | |
button { | |
padding: 0; | |
color: inherit; | |
background-color: transparent; | |
border-radius: 0; | |
font: inherit; | |
text-align: inherit; | |
text-transform: inherit; | |
letter-spacing: inherit; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6, | |
small { | |
font: inherit; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment