Skip to content

Commit

Permalink
fix: add missing css util classes for border-radius (#2355)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstankiewicz authored and PKulkoRaccoonGang committed Aug 4, 2024
1 parent 1fca4ac commit 4c273d7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions styles/scss/core/bootstrap-override/utilities/_borders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,24 @@
border-bottom-right-radius: $border-radius !important;
border-bottom-left-radius: $border-radius !important;
}

.rounded-left {
border-top-left-radius: $border-radius !important;
border-bottom-left-radius: $border-radius !important;
}

.rounded-lg {
border-radius: $border-radius-lg !important;
}

.rounded-circle {
border-radius: 50% !important;
}

.rounded-pill {
border-radius: $rounded-pill !important;
}

.rounded-0 {
border-radius: 0 !important;
}

0 comments on commit 4c273d7

Please sign in to comment.