Sha256: 4112aad730326683987b79c132bfb636a884c3e519f906e33bd1754435825080
Contents?: true
Size: 630 Bytes
Versions: 19
Compression:
Stored size: 630 Bytes
Contents
// ========================================================================== // Border color declaration classes // Pulled from $colors // ========================================================================== @each $key, $val in $colors { .c-b#{$key} { border-color: $val !important; } @each $_key, $_val in (top: t, right: r, bottom: b, left: l) { .c-b#{$_val}#{$key} { border-#{$_key}-color: $val !important; } } } // --- // Border color utility classes // --- @each $_key, $_val in (top: t, right: r, bottom: b, left: l) { .c-b#{$_val}-trans { border-#{$_key}-color: transparent !important; } }
Version data entries
19 entries across 19 versions & 1 rubygems