fix: turn non CTA buttons to ghost
This commit is contained in:
committed by
Valeriy
parent
b1372bba15
commit
c413995a4f
@ -147,7 +147,7 @@ export class CompletionModal extends Component {
|
||||
block={true}
|
||||
bsSize='lg'
|
||||
bsStyle='primary'
|
||||
className='btn-primary-invert'
|
||||
className='btn-invert'
|
||||
download={`${dashedName}.json`}
|
||||
href={this.state.downloadURL}
|
||||
>
|
||||
|
@ -54,7 +54,7 @@ function ToolPanel({
|
||||
<Button
|
||||
block={true}
|
||||
bsStyle='primary'
|
||||
className='btn-primary-invert'
|
||||
className='btn-invert'
|
||||
onClick={openResetModal}
|
||||
>
|
||||
{isMobile ? 'Reset' : 'Reset All Code'}
|
||||
@ -63,7 +63,7 @@ function ToolPanel({
|
||||
<Button
|
||||
block={true}
|
||||
bsStyle='primary'
|
||||
className='btn-primary-invert'
|
||||
className='btn-invert'
|
||||
href={guideUrl}
|
||||
target='_blank'
|
||||
>
|
||||
@ -74,7 +74,7 @@ function ToolPanel({
|
||||
<Button
|
||||
block={true}
|
||||
bsStyle='primary'
|
||||
className='btn-primary-invert'
|
||||
className='btn-invert'
|
||||
onClick={openVideoModal}
|
||||
>
|
||||
{isMobile ? 'Video' : 'Watch a video'}
|
||||
@ -83,7 +83,7 @@ function ToolPanel({
|
||||
<Button
|
||||
block={true}
|
||||
bsStyle='primary'
|
||||
className='btn-primary-invert'
|
||||
className='btn-invert'
|
||||
onClick={openHelpModal}
|
||||
>
|
||||
{isMobile ? 'Help' : 'Ask for help'}
|
||||
|
@ -32,7 +32,7 @@ export class ToolPanel extends Component {
|
||||
<Button
|
||||
block={true}
|
||||
bsStyle='primary'
|
||||
className='btn-primary-invert'
|
||||
className='btn-invert'
|
||||
href={guideUrl}
|
||||
target='_blank'
|
||||
>
|
||||
@ -42,7 +42,7 @@ export class ToolPanel extends Component {
|
||||
<Button
|
||||
block={true}
|
||||
bsStyle='primary'
|
||||
className='btn-primary-invert'
|
||||
className='btn-invert'
|
||||
onClick={openHelpModal}
|
||||
>
|
||||
Ask for help
|
||||
|
@ -57,7 +57,7 @@ function IntroductionPage({ data: { markdownRemark, allChallengeNode } }) {
|
||||
</Link>
|
||||
<ButtonSpacer />
|
||||
<Link to='/learn'>
|
||||
<Button block={true} bsSize='lg' className='btn-primary-invert'>
|
||||
<Button block={true} bsSize='lg' className='btn-invert'>
|
||||
View the curriculum
|
||||
</Button>
|
||||
</Link>
|
||||
|
Reference in New Issue
Block a user