Skip to content

Commit

Permalink
Reduce vertical screen estate of "Create New App" on larger screens (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
thgh authored Oct 4, 2023
1 parent 1b3211f commit bbad0ca
Showing 1 changed file with 15 additions and 19 deletions.
34 changes: 15 additions & 19 deletions src/containers/apps/CreateNewApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ class CreateNewApp extends Component<
const self = this

return (
<Row justify="center">
<Col xs={{ span: 23 }} lg={{ span: 10 }}>
<Card
title={
<span>
<PlusCircleOutlined />
&nbsp;&nbsp;&nbsp;Create A New App
</span>
}
>
<Card
title={
<span>
<PlusCircleOutlined />
&nbsp;&nbsp;&nbsp;Create A New App
</span>
}
>
<Row justify="center">
<Col lg={{ span: 12 }}>
<Row>
{self.props.isMobile ? (
<Fragment>
Expand Down Expand Up @@ -100,21 +100,17 @@ class CreateNewApp extends Component<
</NewTabLink>
</Tooltip>
</Row>

<br />

<hr />

<br />
</Col>
<Col lg={{ span: 12 }}>
<div style={{ textAlign: 'center' }}>
<p>Or Select From</p>
<Link to="/apps/oneclick/" className="ant-btn">
One-Click Apps/Databases
</Link>
</div>
</Card>
</Col>
</Row>
</Col>
</Row>
</Card>
)
}
}
Expand Down

0 comments on commit bbad0ca

Please sign in to comment.