Skip to content

Commit

Permalink
fix: changes border radius to sm
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-sch committed Apr 11, 2024
1 parent b080007 commit 6ef6c3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
@use "../../styles/form-components";
@use "../../styles/component";

$db-accordion-item-border-radius: variables.$db-border-radius-sm;

.db-accordion-item {
position: relative;
inline-size: 100%;
border-radius: variables.$db-border-radius-lg;
border-radius: $db-accordion-item-border-radius;

summary + div {
padding: variables.$db-spacing-fixed-md;
Expand All @@ -29,7 +31,7 @@
justify-content: space-between;
padding: variables.$db-spacing-fixed-md;
gap: variables.$db-spacing-fixed-md;
border-radius: variables.$db-border-radius-lg;
border-radius: $db-accordion-item-border-radius;

@include helpers.hover {
background-color: colors.$db-current-color-bg-transparent-hover;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The spacings are not part of the styling of the accordion items themselves.
inset-block-start: 0;
inline-size: 100%;
block-size: 100%;
border-radius: variables.$db-border-radius-lg;
border-radius: variables.$db-border-radius-sm;
pointer-events: none;
}
}
Expand Down

0 comments on commit 6ef6c3d

Please sign in to comment.