////
///
/// User Select Mixins
/// ===========================================================================
///
/// User selection behavior utility mixins.
///
/// @group Mixins.Utilities
/// @author Scape Agency
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

// ============================================================================
// Mixins
// ============================================================================

/// User select all - allows selecting all content with one click
@mixin user-select--all {
    user-select: all !important;
}

/// User select auto - default browser behavior
@mixin user-select--auto {
    user-select: auto !important;
}

/// User select none - prevents text selection
@mixin user-select--none {
    user-select: none !important;
}
