]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Expand border utilities to include top, right, bottom, left
authorMark Otto <markdotto@gmail.com>
Sat, 16 Dec 2017 09:13:10 +0000 (01:13 -0800)
committerMark Otto <markd.otto@gmail.com>
Thu, 28 Dec 2017 18:23:04 +0000 (10:23 -0800)
scss/utilities/_borders.scss

index ba02f0456317b27ab1213d681144a203d6aad620..b8832ef728241e0cecb5ae33b7298f5fed1205a7 100644 (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; }