lightspeeddevelopment/lsx

View on GitHub
assets/css/scss/global/mixins/_footer-widgets.scss

Summary

Maintainability
Test Coverage
@mixin footer-widgets-colours ($bg: map-get($footer-widgets, bg), $color: map-get($footer-widgets, color), $link: map-get($footer-widgets, link), $hover: map-get($footer-widgets, hover)) {
    #footer-widgets {
        background-color: $bg;
        color: $color;

        a:not(.btn):not(button) {
            @include lsx-link-colour($link, $hover);
        }
    }
}