1
0
Fork 0
mirror of synced 2024-08-23 05:51:29 +12:00
budibase/packages/builder/src/NoPackage.svelte

56 lines
923 B
Svelte
Raw Normal View History

2019-07-13 21:35:57 +12:00
<script>
2020-02-03 22:50:30 +13:00
import Button from "./common/Button.svelte"
import { store } from "./builderStore"
2019-07-13 21:35:57 +12:00
2020-02-03 22:50:30 +13:00
let errors = []
2019-07-13 21:35:57 +12:00
</script>
<div class="root">
2020-02-03 22:50:30 +13:00
<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 $store.apps as app}
<a href={`#/${app}`} class="app-link">{app}</a>
{/each}
</div>
2019-07-13 21:35:57 +12:00
</div>
2020-02-03 22:50:30 +13:00
</div>
2019-07-13 21:35:57 +12:00
</div>
<style>
2020-02-03 22:50:30 +13:00
.root {
2019-07-13 21:35:57 +12:00
position: fixed;
margin: 0 auto;
text-align: center;
top: 20%;
/*color: #333333;
background-color: #fdfdfd;*/
2020-02-03 22:50:30 +13:00
width: 100%;
}
2019-07-13 21:35:57 +12:00
2020-02-03 22:50:30 +13:00
.inner {
display: inline-block;
2019-07-13 21:35:57 +12:00
margin: auto;
2020-02-03 22:50:30 +13:00
}
2019-07-13 21:35:57 +12:00
2020-02-03 22:50:30 +13:00
.logo {
2019-07-13 21:35:57 +12:00
width: 300px;
margin-bottom: 40px;
2020-02-03 22:50:30 +13:00
}
2019-07-13 21:35:57 +12:00
2020-02-03 22:50:30 +13:00
.root :global(.option) {
width: 250px;
}
2019-07-13 21:35:57 +12:00
2020-02-03 22:50:30 +13:00
.app-link {
margin-top: 10px;
display: block;
2020-02-03 22:50:30 +13:00
}
</style>