Created
January 1, 2020 18:39
-
-
Save gustavomedeiross/0fe86e5bad08fd14b64fde97a6bf5f0d to your computer and use it in GitHub Desktop.
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
*, | |
*::before, | |
*::after { | |
margin: 0; | |
padding: 0; | |
outline: 0; | |
border: 0; | |
box-sizing: border-box; | |
} | |
#root, | |
html, | |
body { | |
min-height: 100%; | |
} | |
body { | |
-webkit-font-smoothing: antialiased !important; | |
text-rendering: optimizeLegibility !important; | |
} | |
body, | |
input, | |
button { | |
font: 14px sans-serif; | |
} | |
*:focus { | |
outline: 0; | |
} | |
a { | |
text-decoration: none; | |
} | |
ul { | |
list-style: none; | |
} | |
button { | |
cursor: pointer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment