Created
October 26, 2018 14:54
-
-
Save JanMalch/e9a5fdc80a95645a6c43af4a229b87a1 to your computer and use it in GitHub Desktop.
Basic CSS flexbox utilities
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
.flex { | |
display: flex; | |
} | |
.inline-flex { | |
display: inline-flex; | |
} | |
.flex.align-center { | |
align-items: center; | |
} | |
.flex.justify-center { | |
justify-content: center; | |
} | |
.flex > .grow { | |
flex: 1; | |
} | |
/* more to come ... */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment