Created
June 2, 2024 15:08
-
-
Save moshiurse/8bc197df04784a8c77d0691f01c0f17a to your computer and use it in GitHub Desktop.
Some common utility CSS
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 */ | |
.flex{ | |
display: flex; | |
} | |
.justify-center{ | |
justify-content: center; | |
} | |
.items-center{ | |
align-items: center; | |
} | |
.flex-col{ | |
flex-direction: column; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment