SU-SWS/decanter

View on GitHub
core/src/scss/utilities/mixins/flex/_flex-container.scss

Summary

Maintainability
Test Coverage

///
/// Mixin to apply to the wrapper of all class-based layouts.
///
/// @name flex-container
///
/// @group mixin
@mixin flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}