/**
* Flexlay Wrap
*
* These simple classes allows to set/unset flex wrapping behavior through the CSS flex-wrap property.
* https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap
*/

@import '../variables';

@mixin flex-wrap() {
  @each $option in wrap, nowrap {
    [#{$lib-prefix}layout-#{$option}] {
      flex-wrap: $option;
    }
  }
}
