adding beta button
This commit is contained in:
parent
1b5cddb3b5
commit
ee8e2a926b
|
@ -1,5 +1,6 @@
|
|||
<script>
|
||||
import { store, automationStore, backendUiStore } from "builderStore"
|
||||
import { Button } from "@budibase/bbui"
|
||||
import SettingsLink from "components/settings/Link.svelte"
|
||||
import { get } from "builderStore/api"
|
||||
import { isActive, goto, layout } from "@sveltech/routify"
|
||||
|
@ -83,6 +84,9 @@
|
|||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="beta">
|
||||
<Button secondary href="https://budibase.com">Budibase is in Beta</Button>
|
||||
</div>
|
||||
|
||||
{#await promise}
|
||||
<!-- This should probably be some kind of loading state? -->
|
||||
|
@ -198,4 +202,10 @@
|
|||
font-size: 24px;
|
||||
color: var(--grey-7);
|
||||
}
|
||||
|
||||
.beta {
|
||||
position: absolute;
|
||||
bottom: var(--spacing-m);
|
||||
left: var(--spacing-m);
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue