fix(style): remove underlines on button text (#36662)
* fix/remove-link-underlines * fix(style): remove-underlines-from-buttons * fix: change class to className * style/change-class-to-btn-cta
This commit is contained in:
@@ -25,7 +25,11 @@ const createClickHandler = hardGoTo => e => {
|
||||
|
||||
function CurrentChallengeLink({ children, hardGoTo }) {
|
||||
return (
|
||||
<a href={currentChallengeApi} onClick={createClickHandler(hardGoTo)}>
|
||||
<a
|
||||
className='btn-cta-big btn btn-primary btn-block'
|
||||
href={currentChallengeApi}
|
||||
onClick={createClickHandler(hardGoTo)}
|
||||
>
|
||||
{children}
|
||||
</a>
|
||||
);
|
||||
|
Reference in New Issue
Block a user