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 Jun 5, 2023
1 parent a7ff171 commit 73335b9
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
2 changes: 1 addition & 1 deletion styles/css/core/custom-media-breakpoints.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* IMPORTANT: This file is the result of assembling design tokens
* Do not edit directly
* Generated on Sun, 04 Jun 2023 18:39:23 GMT
* Generated on Mon, 05 Jun 2023 02:30:54 GMT
*/

@custom-media --min-pgn-size-breakpoint-xs (min-width: 0);
Expand Down
2 changes: 1 addition & 1 deletion styles/css/core/variables.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* IMPORTANT: This file is the result of assembling design tokens
* Do not edit directly
* Generated on Sun, 04 Jun 2023 18:39:23 GMT
* Generated on Mon, 05 Jun 2023 02:30:54 GMT
*/

:root {
Expand Down
2 changes: 1 addition & 1 deletion styles/css/themes/light/utility-classes.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* IMPORTANT: This file is the result of assembling design tokens
* Do not edit directly
* Generated on Sun, 04 Jun 2023 18:39:23 GMT
* Generated on Mon, 05 Jun 2023 02:30:54 GMT
*/

.bg-accent-a {
Expand Down
2 changes: 1 addition & 1 deletion styles/css/themes/light/variables.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* IMPORTANT: This file is the result of assembling design tokens
* Do not edit directly
* Generated on Sun, 04 Jun 2023 18:39:23 GMT
* Generated on Mon, 05 Jun 2023 02:30:54 GMT
*/

:root {
Expand Down
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 73335b9

Please sign in to comment.