Skip to content

Instantly share code, notes, and snippets.

@alexalannunes
Created September 21, 2020 16:14
Show Gist options
  • Save alexalannunes/a25aa165a890d05104b9b97065c8c381 to your computer and use it in GitHub Desktop.
Save alexalannunes/a25aa165a890d05104b9b97065c8c381 to your computer and use it in GitHub Desktop.
.jc-center {
justify-content: center;
}
.jc-end {
justify-content: flex-end;
}
.jc-around {
justify-content: space-around;
}
.jc-evenly {
justify-content: space-evenly;
}
.ai-center {
align-items: center;
}
.flex {
display: flex;
}
.column {
flex-direction: column;
}
._row {
flex-direction: row;
}
.jc-between {
justify-content: space-between;
}
.m-0 {
margin: 0 !important;
}
.p-0 {
padding: 0 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment