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