Sha256: e6facd4a8160c48469e5f855877427ff11c86e6c120538f734cdb98a6b22f43f
Contents?: true
Size: 1.07 KB
Versions: 7
Compression:
Stored size: 1.07 KB
Contents
// Border utilities // stylelint-disable block-opening-brace-space-before, primer/selector-no-utility .border { border: $border !important; } .border-top { border-top: $border !important; } .border-right { border-right: $border !important; } .border-bottom { border-bottom: $border !important; } .border-left { border-left: $border !important; } .border-y { border-top: $border !important; border-bottom: $border !important; } // Border colors .border-blue { border-color: $border-blue !important; } .border-gray-light { border-color: $border-gray-light !important; } .border-gray-dark { border-color: $border-gray-dark !important; } // Without borders .border-0 { border: 0 !important; } .border-top-0 { border-top: 0 !important; } .border-right-0 { border-right: 0 !important; } .border-bottom-0 { border-bottom: 0 !important; } .border-left-0 { border-left: 0 !important; } // Rounded corners .rounded-0 { border-radius: 0 !important; } .rounded-1 { border-radius: $border-radius !important; } .rounded-2 { border-radius: $border-radius * 2 !important; }
Version data entries
7 entries across 7 versions & 1 rubygems