Skip to content

Instantly share code, notes, and snippets.

@moshiurse
Created June 2, 2024 15:08
Show Gist options
  • Save moshiurse/8bc197df04784a8c77d0691f01c0f17a to your computer and use it in GitHub Desktop.
Save moshiurse/8bc197df04784a8c77d0691f01c0f17a to your computer and use it in GitHub Desktop.
Some common utility CSS
/* 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