From 542c70b7889623bce2dd9a0f29a5160ae8d21a3a Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Thu, 29 Nov 2018 11:53:45 -0500 Subject: [PATCH] fix broken border-radius helper example In https://github.com/primer/primer/pull/545/files#diff-1d59c9367289419da3ed2963ed24e7beR132, the docs introduced for the `padding-*-*` helpers omitted the radius size dimension. cc @shawnbot --- modules/primer-utilities/docs/borders.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/primer-utilities/docs/borders.md b/modules/primer-utilities/docs/borders.md index 52a62ed25a..f7adfd4e90 100644 --- a/modules/primer-utilities/docs/borders.md +++ b/modules/primer-utilities/docs/borders.md @@ -130,17 +130,17 @@ Use the following utilities to add or remove rounded corners: `rounded-0` remove You can also add rounded corners to each edge (top, right, bottom, left) with the following utilities: ```html -
- .rounded-top +
+ .rounded-top-1
-
- .rounded-right +
+ .rounded-right-1
-
- .rounded-bottom +
+ .rounded-bottom-1
-
- .rounded-left +
+ .rounded-left-1
```