Skip to content

Commit

Permalink
feat(utilities): add .border-4 and .border-5 (#2127)
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond committed Jul 5, 2023
1 parent ca97b12 commit ef20beb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,9 @@ $border-width: .125rem !default;
$border-widths: (
1: $border-width * .5,
2: $border-width,
3: $border-width * 1.5
3: $border-width * 1.5,
4: $border-width * 2,
5: $border-width * 2.5
) !default;
$border-style: solid !default;
$border-color: $black !default; // Boosted mod
Expand Down
2 changes: 2 additions & 0 deletions site/content/docs/5.3/utilities/borders.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ Or, choose from any of the `.border-opacity` utilities:
<span class="border border-1"></span>
<span class="border border-2"></span>
<span class="border border-3"></span>
<span class="border border-4"></span>
<span class="border border-5"></span>
{{< /example >}}

## Radius
Expand Down

0 comments on commit ef20beb

Please sign in to comment.