Skip to content

Commit

Permalink
fix: revert classname case
Browse files Browse the repository at this point in the history
  • Loading branch information
ruzniaievdm committed Feb 29, 2024
1 parent 30d0021 commit 05362bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/group-configurations/GroupConfigurations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
align-content: center;
justify-content: space-between;

.configuration-card-header-button {
.configuration-card-header__button {
display: flex;
align-items: flex-start;
padding: 0;
Expand Down Expand Up @@ -86,7 +86,7 @@
.configuration-card-content {
margin: 0 map-get($spacers, 2) 0 map-get($spacers, 4);

.configuration-card-content-experiment-stack {
.configuration-card-content__experiment-stack {
display: flex;
justify-content: space-between;
padding: map-get($spacers, 2\.5) 0;
Expand Down
2 changes: 1 addition & 1 deletion src/group-configurations/common/TitleButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const TitleButton = ({
<Button
iconBefore={isExpanded ? ArrowDownIcon : ArrowRightIcon}
variant="tertiary"
className="configuration-card-header-button"
className="configuration-card-header__button"
data-testid="configuration-card-header-button"
onClick={onTitleClick}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const ExperimentCardGroup = ({ groups }) => {
<Stack className="mb-3">
{groups.map((item) => (
<div
className="configuration-card-content-experiment-stack"
className="configuration-card-content__experiment-stack"
data-testid="configuration-card-content-experiment-stack"
key={item.id}
>
Expand Down

0 comments on commit 05362bb

Please sign in to comment.