mirror of https://github.com/Budibase/budibase.git
4 changed files with 19 additions and 8 deletions
@ -0,0 +1,16 @@ |
|||||
|
<script> |
||||
|
import Panel from "components/design/Panel.svelte" |
||||
|
import { Body, Layout } from "@budibase/bbui" |
||||
|
</script> |
||||
|
|
||||
|
<Panel borderLeft title="Navigation" icon="InfoOutline"> |
||||
|
<Layout paddingX="L" paddingY="XL" gap="S"> |
||||
|
<Body size="S"> |
||||
|
Your navigation is configured for all the screens within your app. |
||||
|
</Body> |
||||
|
<Body size="S"> |
||||
|
You can hide and show your navigation for each screen in the screen |
||||
|
settings. |
||||
|
</Body> |
||||
|
</Layout> |
||||
|
</Panel> |
||||
@ -1,5 +1,7 @@ |
|||||
<script> |
<script> |
||||
import NavigationSettingsPanel from "./_components/NavigationSettingsPanel.svelte" |
import NavigationSettingsPanel from "./_components/NavigationSettingsPanel.svelte" |
||||
|
import NavigationInfoPanel from "./_components/NavigationInfoPanel.svelte" |
||||
</script> |
</script> |
||||
|
|
||||
<NavigationSettingsPanel /> |
<NavigationSettingsPanel /> |
||||
|
<NavigationInfoPanel /> |
||||
|
|||||
Loading…
Reference in new issue