Created
November 15, 2019 18:00
-
-
Save BretCameron/08506387c33b8ae2029e3f43fd48e61d to your computer and use it in GitHub Desktop.
Some minimal CSS to style the typescript counter examples
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
* { | |
text-align: center; | |
} | |
button { | |
padding: 10px 20px; | |
font-size: 1.5rem; | |
} | |
.flex { | |
display: flex; | |
justify-content: space-between; | |
max-width: 540px; | |
margin: 0 auto; | |
} | |
.flex > div { | |
max-width: 200px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment