////
///
/// Paragraph Dropcap Output
/// ===========================================================================
///
/// CSS output for paragraph drop capitals.
///
/// @group Typography.Paragraph.Layout.Dropcap
/// @author Scape Press
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

@use "../../../../01-core/prefix" as *;
@use "./paragraph-dropcap.mixins" as mixins;

// ============================================================================
// Output
// ============================================================================

@layer ss.typography {
    .#{$ss-prefix-typography}-dropcap {
        @include mixins.paragraph-dropcap;
    }

    .#{$ss-prefix-typography}-dropcap-small {
        @include mixins.paragraph-dropcap-small;
    }

    .#{$ss-prefix-typography}-dropcap-large {
        @include mixins.paragraph-dropcap-large;
    }

    .#{$ss-prefix-typography}-dropcap-decorative {
        @include mixins.paragraph-dropcap-decorative;
    }

    .#{$ss-prefix-typography}-dropcap-boxed {
        @include mixins.paragraph-dropcap-boxed;
    }

    .#{$ss-prefix-typography}-dropcap-outlined {
        @include mixins.paragraph-dropcap-outlined;
    }
}
