fix/change-buttons-to-suggested
This commit is contained in:
@ -32,7 +32,12 @@ function ChallengeTitle({
|
|||||||
return (
|
return (
|
||||||
<div className='challenge-title-wrap'>
|
<div className='challenge-title-wrap'>
|
||||||
{showPrevNextBtns ? (
|
{showPrevNextBtns ? (
|
||||||
<Button bsStyle='primary' onClick={() => navigate(prevChallengePath)}>
|
<Button
|
||||||
|
aria-label='Previous lesson'
|
||||||
|
bsStyle='primary'
|
||||||
|
className='btn-invert'
|
||||||
|
onClick={() => navigate(prevChallengePath)}
|
||||||
|
>
|
||||||
<
|
<
|
||||||
</Button>
|
</Button>
|
||||||
) : null}
|
) : null}
|
||||||
@ -42,7 +47,9 @@ function ChallengeTitle({
|
|||||||
</h2>
|
</h2>
|
||||||
{showPrevNextBtns ? (
|
{showPrevNextBtns ? (
|
||||||
<Button
|
<Button
|
||||||
|
aria-label='Next lesson'
|
||||||
bsStyle='primary'
|
bsStyle='primary'
|
||||||
|
className='btn-invert'
|
||||||
onClick={() => navigate(introPath ? introPath : nextChallengePath)}
|
onClick={() => navigate(introPath ? introPath : nextChallengePath)}
|
||||||
>
|
>
|
||||||
>
|
>
|
||||||
|
Reference in New Issue
Block a user