Sha256: f1e3d757429803d8e2dbabe5b1ac17618b39f174b2be01a78d4a82dbaf322a82
Contents?: true
Size: 814 Bytes
Versions: 49
Compression:
Stored size: 814 Bytes
Contents
// // borders.scss // // Sizing $border-sizing: () !default; $border-sizing: map-merge(( "2": 2, "3": 3, "4": 4, "5": 5 ), $border-sizing); @each $size, $value in $border-sizing { .border-#{$size} { border-width: $border-width * $value !important; } .border-top-#{$size} { border-top-width: $border-width * $value !important; } .border-right-#{$size} { border-right-width: $border-width * $value !important; } .border-bottom-#{$size} { border-bottom-width: $border-width * $value !important; } .border-left-#{$size} { border-left-width: $border-width * $value !important; } } // Contextual classes .border-body { border-color: $body-bg !important; } .border-card { border-color: $card-bg !important; }
Version data entries
49 entries across 49 versions & 1 rubygems