Skip to content

Commit c5f6aef

Browse files
authored
Merge branch 'master' into KristinAoki/add-start-with-theme-command
2 parents 7eecf3d + 81b6211 commit c5f6aef

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/courseware/course/sequence/sequence-navigation/generic/NextButton.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ const NextButton = ({
4747
if (isAtTop) {
4848
return (
4949
<IconButton
50-
variant="light"
51-
className={buttonStyle}
50+
className={`${buttonStyle} icon-hover`}
5251
onClick={onClick}
5352
src={nextArrow}
5453
disabled={disabled}

src/courseware/course/sequence/sequence-navigation/generic/PreviousButton.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ const PreviousButton = ({
4040
if (isAtTop) {
4141
return (
4242
<IconButton
43-
variant="light"
44-
className={buttonStyle}
43+
className={`${buttonStyle} icon-hover`}
4544
onClick={onClickHandler}
4645
src={prevArrow}
4746
disabled={disabled}

0 commit comments

Comments
 (0)