diff options
| author | mcoms <[email protected]> | 2022-05-29 13:20:41 -0400 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2022-05-30 09:26:41 -0700 |
| commit | 78c0ad8044959dae5239eac1a6cb9a752878e88b (patch) | |
| tree | 9a381227b4e588cedf58b4a2efb3ae10bea36cd9 | |
| parent | ef3ecaf99749d4c86fe725cd49f410e344ffd96e (diff) | |
| download | bootstrap-78c0ad8044959dae5239eac1a6cb9a752878e88b.tar.xz bootstrap-78c0ad8044959dae5239eac1a6cb9a752878e88b.zip | |
fix alert border radius
| -rw-r--r-- | scss/_alert.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_alert.scss b/scss/_alert.scss index 0e7dbe60d..c8bc91b42 100644 --- a/scss/_alert.scss +++ b/scss/_alert.scss @@ -20,7 +20,7 @@ color: var(--#{$prefix}alert-color); background-color: var(--#{$prefix}alert-bg); border: var(--#{$prefix}alert-border); - border-radius: var(--#{$prefix}alert-border-radius, 0); // stylelint-disable-line property-disallowed-list + @include border-radius(var(--#{$prefix}alert-border-radius)); } // Headings for larger alerts |
