Created
July 25, 2018 08:33
-
-
Save sebastiano-guerriero/9466c6a503cab779118fe932c5fae9d2 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
.flex { | |
display: flex; | |
.align-center { | |
margin: auto; | |
align-self: center; | |
} | |
.align-left { | |
margin-right: auto; | |
align-self: center; | |
} | |
.align-right { | |
margin-left: auto; | |
align-self: center; | |
} | |
.align-x-center { | |
margin-right: auto; | |
margin-left: auto; | |
} | |
.align-x-left { | |
margin-right: auto; | |
} | |
.align-x-right { | |
margin-left: auto; | |
} | |
.align-y-center { | |
align-self: center; | |
} | |
.align-y-top { | |
align-self: flex-start; | |
} | |
.align-y-bottom { | |
align-self: flex-end; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
that's neat. thanks.