0.0.1 • Published 6 years ago

flexbox-mixin v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

flexbox-mixin

A bunch of SASS flexbox mixins from MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Mixins

Usage

In any CSS file:

@import 'flexbox-mixin';

.some-selector {
  @include flexbox;                                                             
  @include justify-content(flex-start);                                         
  @include align-items(center);                                                 
  @include flex-direction(column);                                              
  @include flex-wrap(nowrap);                                                   
  @include align-content(flex-start);
}