Expand border utilities to include top, right, bottom, left

This commit is contained in:
Mark Otto 2017-12-16 01:13:10 -08:00 committed by Mark Otto
parent b97cb2aa74
commit 57083c3042
1 changed files with 6 additions and 1 deletions

View File

@ -4,7 +4,12 @@
// Border
//
.border { border: $border-width solid $border-color !important; }
.border { border: $border-width solid $border-color !important; }
.border-top { border-top: $border-width solid $border-color !important; }
.border-right { border-right: $border-width solid $border-color !important; }
.border-bottom { border-bottom: $border-width solid $border-color !important; }
.border-left { border-left: $border-width solid $border-color !important; }
.border-0 { border: 0 !important; }
.border-top-0 { border-top: 0 !important; }
.border-right-0 { border-right: 0 !important; }