////
///
/// Text Wrap Utility Classes
/// ===========================================================================
///
/// Text wrapping and word break utility classes.
///
/// @group Classes.Utilities
/// @author Scape Agency
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

// ============================================================================
// Use
// ============================================================================

@use "../../mixins/soul_type/text/text_wrap" as *;

// ============================================================================
// Text Wrapping Classes
// ============================================================================

.text--wrap {
    @include text--wrap;
}

.text--nowrap {
    @include text--nowrap;
}

.text--break {
    @include text--break;
}

// ============================================================================
// Word Break Classes
// ============================================================================

.word-break--normal {
    @include word-break--normal;
}

.word-break--break-all {
    @include word-break--break-all;
}

.word-break--keep-all {
    @include word-break--keep-all;
}
