1
0
Fork 0
mirror of synced 2024-10-02 01:56:57 +13:00

Set light as default app theme

This commit is contained in:
Andrew Kingston 2021-06-30 19:41:09 +01:00
parent 938ae65132
commit ccb48a642f
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@
<div> <div>
<Select <Select
value={$store.theme || "spectrum--lightest"} value={$store.theme || "spectrum--light"}
options={themeOptions} options={themeOptions}
placeholder={null} placeholder={null}
on:change={e => store.actions.theme.save(e.detail)} on:change={e => store.actions.theme.save(e.detail)}

View file

@ -59,7 +59,7 @@
} }
} }
$: themeClass = $builderStore.theme || "spectrum--lightest" $: themeClass = $builderStore.theme || "spectrum--light"
</script> </script>
{#if dataLoaded && $screenStore.activeLayout} {#if dataLoaded && $screenStore.activeLayout}