Align action panel with other designs

This commit is contained in:
Keviin Åberg Kultalahti 2021-04-22 16:38:26 +02:00
parent 9f5393a7ac
commit 79366072dc
1 changed files with 6 additions and 7 deletions

View File

@ -51,12 +51,11 @@
} }
</script> </script>
<Button secondary wide on:click={drawer.show}>Define Actions</Button> <Button primary on:click={drawer.show}>Define Actions</Button>
<Drawer bind:this={drawer} title={'Actions'}> <Drawer bind:this={drawer} title={'Actions'}>
<heading slot="buttons"> <svelte:fragment slot="description">
<Button thin blue on:click={saveEventData}>Save</Button> Define what actions to run.
</heading> </svelte:fragment>
<div slot="body"> <Button cta slot="buttons" on:click={saveEventData}>Save</Button>
<EventEditor bind:actions={value} eventType={name} /> <EventEditor slot="body" bind:actions={value} eventType={name} />
</div>
</Drawer> </Drawer>