////
///
/// Layout Classes Module | Justify
/// ===========================================================================
///
/// @group Layout
/// @author Scape Agency
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

@use "../../mixins/head_layout/position/justify_content" as *;

// ============================================================================
// Utility Classes
// ============================================================================

.justify--start {
    @include justify--start;
}

.justify--end {
    @include justify--end;
}

.justify--center {
    @include justify--center;
}

.justify--between {
    @include justify--between;
}

.justify--around {
    @include justify--around;
}

.justify--evenly {
    @include justify--evenly;
}
