Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce vertical screen estate of "Create New App" on larger screens #131

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading