Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix broken border-radius helper example #614

Merged
merged 1 commit into from
Nov 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions modules/primer-utilities/docs/borders.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<div class="border rounded-top mb-2">
.rounded-top
<div class="border rounded-top-1 mb-2">
.rounded-top-1
</div>
<div class="border rounded-right mb-2">
.rounded-right
<div class="border rounded-right-1 mb-2">
.rounded-right-1
</div>
<div class="border rounded-bottom mb-2">
.rounded-bottom
<div class="border rounded-bottom-1 mb-2">
.rounded-bottom-1
</div>
<div class="border rounded-left mb-2">
.rounded-left
<div class="border rounded-left-1 mb-2">
.rounded-left-1
</div>
```

Expand Down