diff --git a/src/utilities/borders.scss b/src/utilities/borders.scss index 9e028df8..a888e2f2 100644 --- a/src/utilities/borders.scss +++ b/src/utilities/borders.scss @@ -5,6 +5,12 @@ /* Add a gray border on all edges */ .border { border: $border !important; } +/* Add a gray border to the left and right */ +.border-x { + border-left: $border !important; + border-right: $border !important; +} + /* Add a gray border to the top and bottom */ .border-y { border-top: $border !important;