////
///
/// Text Align Utilities
/// ===========================================================================
///
/// Explicit text alignment override utilities.
/// One responsibility per file.
///
/// @group Utilities.Typography
/// @author Scape Press
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

@layer ss.utilities {
    .ss-u-text-left {
        text-align: left;
    }
    .ss-u-text-center {
        text-align: center;
    }
    .ss-u-text-right {
        text-align: right;
    }
    .ss-u-text-justify {
        text-align: justify;
    }
    .ss-u-text-start {
        text-align: start;
    }
    .ss-u-text-end {
        text-align: end;
    }
}
