Skip to content

Instantly share code, notes, and snippets.

@brianpattison
Created January 12, 2016 18:35
Show Gist options
  • Save brianpattison/b0e63b9fe14b69a14fb4 to your computer and use it in GitHub Desktop.
Save brianpattison/b0e63b9fe14b69a14fb4 to your computer and use it in GitHub Desktop.
Center children mixin
// Centers child elements horizontally and vertically without needing
// to set the height and width of the child elements using flexbox.
@mixin center-children {
@include align-content(center);
@include align-items(center);
@include display(flex);
@include flex-direction(column);
@include justify-content(center);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment