////
///
/// Stretched Link Mixins
/// ===========================================================================
///
/// Stretched link utility mixin for making entire container clickable.
///
/// @group Mixins.Utilities
/// @author Scape Agency
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

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

/// Stretched link mixin - makes parent container clickable via pseudo-element
@mixin stretched_link {
    &::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        content: "";
    }
}
