Skip to content

Instantly share code, notes, and snippets.

@jonnymaceachern
Created September 13, 2016 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonnymaceachern/c2c359843464875cba8a9197256ff224 to your computer and use it in GitHub Desktop.
Save jonnymaceachern/c2c359843464875cba8a9197256ff224 to your computer and use it in GitHub Desktop.
@mixin table-center {
display: table;
> [class*="col-"] {
float: none;
display: table-cell;
vertical-align: middle;
}
}
// Usage:
.my-panel {
@include mq($from: tablet){
@include table-center;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment