1
0
Fork 0
mirror of synced 2024-05-17 10:53:15 +12:00
budibase/packages/builder/src/NoPackage.svelte
2019-07-15 06:59:46 +01:00

56 lines
956 B
Svelte

<script>
import Button from "./common/Button.svelte"
import { database } from "./builderStore";
let errors = [];
</script>
<div class="root">
<div class="inner">
<img src="/_builder/assets/budibase-logo.png" class="logo" alt="budibase logo"/>
<div>
<div>
<h4 style="margin-bottom: 20px">Choose an Application</h4>
{#each $database.apps as app}
<a href={`#/${app}`} class="app-link">{app}</a>
{/each}
</div>
</div>
</div>
</div>
<style>
.root {
position: fixed;
margin: 0 auto;
text-align: center;
top: 20%;
/*color: #333333;
background-color: #fdfdfd;*/
width:100%;
}
.inner {
display:inline-block;
margin: auto;
}
.logo {
width: 300px;
margin-bottom: 40px;
}
.root :global(.option) {
width:250px;
}
.app-link {
margin-top: 10px;
display: block;
}
</style>