Move theme editor into theme tab
This commit is contained in:
parent
d4f20f9e82
commit
0e05c82c8c
|
@ -1,8 +1,6 @@
|
|||
<script>
|
||||
import ComponentSelectionList from "./ComponentSelectionList.svelte"
|
||||
import DevicePreviewSelect from "./DevicePreviewSelect.svelte"
|
||||
import ThemeEditor from "./ThemeEditor.svelte"
|
||||
import AppThemeSelect from "./AppThemeSelect.svelte"
|
||||
import AppPreview from "./AppPreview.svelte"
|
||||
import { store } from "builderStore"
|
||||
</script>
|
||||
|
@ -13,11 +11,6 @@
|
|||
{#if $store.clientFeatures.devicePreview}
|
||||
<DevicePreviewSelect />
|
||||
{/if}
|
||||
{#if $store.clientFeatures.customThemes}
|
||||
<ThemeEditor />
|
||||
{:else if $store.clientFeatures.spectrumThemes}
|
||||
<AppThemeSelect />
|
||||
{/if}
|
||||
</div>
|
||||
<div class="content">
|
||||
{#key $store.version}
|
||||
|
|
|
@ -73,7 +73,7 @@
|
|||
</script>
|
||||
|
||||
<div class="container">
|
||||
<ActionButton icon="Brush" on:click={modal.show}>Theme</ActionButton>
|
||||
<ActionButton icon="Brush" on:click={modal.show}>Edit theme</ActionButton>
|
||||
</div>
|
||||
<Modal bind:this={modal}>
|
||||
<ModalContent
|
|
@ -1 +1,15 @@
|
|||
Theme
|
||||
<script>
|
||||
import NavigationPanel from "components/design/NavigationPanel/NavigationPanel.svelte"
|
||||
import { Body, Layout } from "@budibase/bbui"
|
||||
import AppPanel from "components/design/AppPanel/AppPanel.svelte"
|
||||
import ThemeEditor from "./_components/ThemeEditor.svelte"
|
||||
</script>
|
||||
|
||||
<NavigationPanel title="Theme">
|
||||
<Layout paddingX="L" paddingY="XL" gap="S">
|
||||
<Body>Your theme is set across all the screens within your app</Body>
|
||||
<ThemeEditor />
|
||||
</Layout>
|
||||
</NavigationPanel>
|
||||
|
||||
<AppPanel />
|
||||
|
|
Loading…
Reference in New Issue