fix(client): adjust CTA button width depending on viewport (#38432)

This commit is contained in:
Ashraf Nazar
2020-03-26 17:40:59 +00:00
committed by GitHub
parent 66cbabda22
commit 28d363e65a
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ function Intro({
<h2 className='medium-heading'>Spotify</h2>
</div>
</Col>
<Col sm={10} smOffset={1} xs={12}>
<Col md={6} mdOffset={3} sm={8} smOffset={2} xs={12}>
<button
className={'btn-cta-big signup-btn btn-cta center-block'}
onClick={() => {

View File

@ -16,7 +16,7 @@ const propTypes = {
const BigCallToAction = () => (
<Row>
<Col sm={10} smOffset={1} xs={12}>
<Col md={6} mdOffset={3} sm={10} smOffset={1} xs={12}>
<Login block={true}>Sign in and get started (it's free)</Login>
</Col>
</Row>