Skip to content

Commit 4efd3fc

Browse files
committed
Rename shrinkButton to toggleButton.
1 parent 1707054 commit 4efd3fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/cards/card.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
flex-direction: row;
118118
}
119119

120-
.shrink-button {
120+
.toggle-button {
121121
cursor: pointer;
122122
color: white;
123123
display: flex;
@@ -127,7 +127,7 @@
127127
padding: 0.75rem;
128128
}
129129

130-
.shrink-button:hover, .all-button:hover {
130+
.toggle-button:hover, .all-button:hover {
131131
background-color: $ui-black-transparent;
132132
}
133133

src/components/cards/cards.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const CardHeader = ({onCloseCards, onToggleCards, onShowAll, totalSteps, step, t
4343
) : null}
4444
<div className={styles.headerButtonsRight}>
4545
<div
46-
className={styles.shrinkButton}
46+
className={styles.toggleButton}
4747
onClick={onToggleCards}
4848
>
4949
{toggle ? 'Shrink' : 'Expand'}

0 commit comments

Comments
 (0)