From 57083c3042f622af424c477b80bc98ae2a2cee76 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 16 Dec 2017 01:13:10 -0800 Subject: [PATCH] Expand border utilities to include top, right, bottom, left --- scss/utilities/_borders.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scss/utilities/_borders.scss b/scss/utilities/_borders.scss index ba02f04563..b8832ef728 100644 --- a/scss/utilities/_borders.scss +++ b/scss/utilities/_borders.scss @@ -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; }