1
0
Fork 0
mirror of synced 2024-07-08 07:46:10 +12:00

Add secondary panel for theme tab

This commit is contained in:
Andrew Kingston 2022-05-13 11:35:30 +01:00
parent 2d5966e742
commit 8481115959
3 changed files with 14 additions and 3 deletions

View file

@ -0,0 +1,12 @@
<script>
import Panel from "components/design/Panel.svelte"
import { Body, Layout } from "@budibase/bbui"
</script>
<Panel borderLeft title="Theme" icon="Brush">
<Layout paddingX="L" paddingY="XL">
<Body size="S">
Your theme is set across all the screens within your app.
</Body>
</Layout>
</Panel>

View file

@ -48,9 +48,6 @@
<Panel title="Theme" borderRight>
<Layout paddingX="L" paddingY="XL" gap="S">
<Body size="S">
Your theme is set across all the screens within your app.
</Body>
<Layout noPadding gap="XS">
<Label>Theme</Label>
<AppThemeSelect />

View file

@ -1,5 +1,7 @@
<script>
import ThemeSettingsPanel from "./_components/ThemeSettingsPanel.svelte"
import ThemeInfoPanel from "./_components/ThemeInfoPanel.svelte"
</script>
<ThemeSettingsPanel />
<ThemeInfoPanel />