// ============================================================================
// move.gl | Loader Base Mixin
// ============================================================================
// Copyright 2025 Scape Agency BV
// Licensed under MIT License
// ============================================================================

////
/// Loader Base Mixin
/// ===========================================================================
///
/// Base loader container mixin that provides common styling for all loaders.
///
/// @group Loaders
/// @author Scape Agency
/// @link https://move.gl
/// @since 0.1.0 initial release
/// @access public
////


// ============================================================================
// Base Loader Mixin
// ============================================================================

///
/// Base loader container mixin.
/// Provides flexbox centering for loader content.
///
/// @example scss - Basic usage
///   .loader {
///     @include loader_base;
///   }
///
@mixin loader_base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
