1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12: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>
<Select
value={$store.theme || "spectrum--lightest"}
value={$store.theme || "spectrum--light"}
options={themeOptions}
placeholder={null}
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>
{#if dataLoaded && $screenStore.activeLayout}