Skip to content

Commit

Permalink
Expand border utilities to include top, right, bottom, left
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Dec 28, 2017
1 parent b97cb2a commit 57083c3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scss/utilities/_borders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 57083c3

Please sign in to comment.