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:
Tom
2019-08-27 12:30:35 -05:00
committed by mrugesh
parent 920209cb23
commit f03a731c36
5 changed files with 21 additions and 43 deletions

View File

@@ -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>
);