mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
Fixed broken layout of welcome page
This commit is contained in:
parent
49154e0d33
commit
2b4e528eb6
1 changed files with 27 additions and 27 deletions
|
|
@ -107,37 +107,37 @@ class HomePage extends React.Component {
|
|||
</div>
|
||||
</header>
|
||||
|
||||
<div className="page-body homepage-body">
|
||||
<div className="container-xl">
|
||||
<div className="row row-deck row-cards">
|
||||
{!isLoading && apps.length === 0 &&
|
||||
<div class="page-wrapper">
|
||||
<div class="container-xl">
|
||||
{!isLoading && apps.length === 0 &&
|
||||
<div class="page-wrapper">
|
||||
<div class="container-xl">
|
||||
</div>
|
||||
<div class="page-body">
|
||||
<div class="container-xl d-flex flex-column justify-content-center">
|
||||
<div class="empty">
|
||||
<div class="empty-img"><img src="/assets/images/blank.svg" height="128" alt=""/>
|
||||
</div>
|
||||
<div class="page-body">
|
||||
<div class="container-xl d-flex flex-column justify-content-center">
|
||||
<div class="empty">
|
||||
<div class="empty-img"><img src="/assets/images/blank.svg" height="128" alt=""/>
|
||||
</div>
|
||||
<p class="empty-title">You haven't created any apps yet.</p>
|
||||
<p class="empty-subtitle text-muted">
|
||||
Try adjusting your search or filter to find what you're looking for.
|
||||
</p>
|
||||
<div class="empty-action">
|
||||
<a onClick={this.createApp} class="btn btn-primary text-light">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><line x1="12" y1="5" x2="12" y2="19" /><line x1="5" y1="12" x2="19" y2="12" /></svg>
|
||||
Create your first app
|
||||
</a>
|
||||
<a href="https://docs.tooljet.io" class="btn btn-primary text-light mx-2">
|
||||
Read documentation
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="empty-title">You haven't created any apps yet.</p>
|
||||
<p class="empty-subtitle text-muted">
|
||||
Try adjusting your search or filter to find what you're looking for.
|
||||
</p>
|
||||
<div class="empty-action">
|
||||
<a onClick={this.createApp} class="btn btn-primary text-light">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><line x1="12" y1="5" x2="12" y2="19" /><line x1="5" y1="12" x2="19" y2="12" /></svg>
|
||||
Create your first app
|
||||
</a>
|
||||
<a href="https://docs.tooljet.io" target="_blank" class="btn btn-primary text-light mx-2">
|
||||
Read documentation
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
||||
<div className="page-body homepage-body">
|
||||
<div className="container-xl">
|
||||
<div className="row row-deck row-cards">
|
||||
<div className="col-md-2">
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue