rahmanda/ayu

View on GitHub
src/tools/_border.scss

Summary

Maintainability
Test Coverage
// =====================================================
// Border Tools
// =====================================================

@mixin border($width: null, $style: null, $color: null, $radius: null) {
    border-width: $width;
    border-style : $style;
    border-color: $color;
    border-radius: $radius;
}