//
// Component: Leader
//
// ========================================================================


// Variables
// ========================================================================

//
// New
//

@leader-font-size:                              inherit;
@leader-font-family:                            inherit;
@leader-font-weight:                            inherit;
@leader-letter-spacing:                         inherit;


// Component
// ========================================================================

.hook-leader() when not (@leader-font-size = inherit) {
    font-size: @leader-font-size;
}

.hook-leader() when not (@leader-font-family = inherit) {
    font-family: @leader-font-family;
}

.hook-leader() when not (@leader-font-weight = inherit) {
    font-weight: @leader-font-weight;
}

.hook-leader() when not (@leader-letter-spacing = inherit) {
    letter-spacing: @leader-letter-spacing;
}


// Miscellaneous
// ========================================================================

.hook-leader-misc() {}


// Inverse
// ========================================================================

.hook-inverse-leader() {}