1
0
Fork 0
mirror of synced 2024-09-09 22:16:26 +12:00
budibase/packages/builder/src/BackendRoot.svelte

56 lines
1.1 KiB
Svelte
Raw Normal View History

2019-08-20 18:24:02 +12:00
<script>
2019-08-30 19:25:00 +12:00
import BackendNav from "./nav/BackendNav.svelte";
2019-08-20 18:24:02 +12:00
import Database from "./database/DatabaseRoot.svelte" ;
import UserInterface from "./userInterface/UserInterfaceRoot.svelte" ;
import ActionsAndTriggers from "./actionsAndTriggers/ActionsAndTriggersRoot.svelte" ;
import AccessLevels from "./accessLevels/AccessLevelsRoot.svelte" ;
import ComingSoon from "./common/ComingSoon.svelte";
import {store} from "./builderStore";
export let navWidth = "50px";
</script>
<div class="root">
2019-08-30 19:25:00 +12:00
<div class="nav">
<BackendNav />
</div>
2019-08-20 18:24:02 +12:00
<div class="content"
style="width: calc(100% - {navWidth}); left: {navWidth}">
{#if $store.activeNav === "database"}
<Database />
{:else if $store.activeNav === "actions"}
<ActionsAndTriggers />
{:else if $store.activeNav === "access levels"}
<AccessLevels />
{/if}
</div>
</div>
<style>
2019-09-03 21:42:19 +12:00
.root {
height: 100%;
display: flex;
}
.content {
flex: 1 1 auto;
height: 100%;
background-color: var(--white);
margin:0;
}
.nav {
flex: 0 1 auto;
width: 300px;
height: 100%;
}
2019-08-20 18:24:02 +12:00
</style>