1
0
Fork 0
mirror of synced 2024-07-07 23:35:49 +12:00

Wrap whole client app in spectrum classes to reduce dependency on spectrum wrapper around any spectrum components in client app

This commit is contained in:
Andrew Kingston 2021-05-13 16:32:52 +01:00
parent 9c7f5f98b7
commit 81e9f5b860

View file

@ -39,8 +39,18 @@
</script>
{#if loaded && $screenStore.activeLayout}
<Provider key="user" data={$authStore} {actions}>
<Component definition={$screenStore.activeLayout.props} />
<NotificationDisplay />
</Provider>
<div lang="en" dir="ltr" class="spectrum spectrum--medium spectrum--light">
<Provider key="user" data={$authStore} {actions}>
<Component definition={$screenStore.activeLayout.props} />
<NotificationDisplay />
</Provider>
</div>
{/if}
<style>
div {
background: transparent;
height: 100%;
position: relative;
}
</style>