Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BruceMcKinnon/373ffed0806e082de3ff09c24f54d687 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/373ffed0806e082de3ff09c24f54d687 to your computer and use it in GitHub Desktop.
Flexbox mixins
@mixin flex-container {
display: flex;
align-items: center;
justify-content: center;
}
@mixin flex-item-top {
align-items: flex-start;
align-self: flex-start;
}
@mixin flex-item-middle {
align-items: center;
align-self: center;
}
@mixin flex-item-bottom {
align-items: flex-end;
align-self: flex-end;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment