diff --git a/pages/css/getting-started/contributing.md b/pages/css/getting-started/contributing.md index 53a27325..80f7efe5 100644 --- a/pages/css/getting-started/contributing.md +++ b/pages/css/getting-started/contributing.md @@ -90,7 +90,6 @@ status: Stable source: 'https://github.com/primer/css/tree/master/src/alerts' bundle: alerts --- - ``` ### Documentation Anatomy diff --git a/src/utilities/borders.scss b/src/utilities/borders.scss index b4846519..e71ce8ef 100644 --- a/src/utilities/borders.scss +++ b/src/utilities/borders.scss @@ -2,9 +2,6 @@ // stylelint-disable primer/selector-no-utility // stylelint-disable block-opening-brace-space-before, comment-empty-line-before -/* Add a gray border on all edges */ -.border { border: $border !important; } - /* Add a gray border to the left and right */ .border-x { border-right: $border !important; @@ -17,11 +14,6 @@ border-bottom: $border !important; } -/* Change the border style to dashed, in conjunction with another utility */ -.border-dashed { - border-style: dashed !important; -} - $edges: ( top: (top-left, top-right), right: (top-right, bottom-right), @@ -88,6 +80,11 @@ $edges: ( /* Add a 50% border-radius to make something into a circle */ .circle { border-radius: 50% !important; } +/* Change the border style to dashed, in conjunction with another utility */ +.border-dashed { + border-style: dashed !important; +} + /* Use with .border to turn the border blue */ .border-blue { border-color: $border-blue !important; } /* Use with .border to turn the border blue-light */