more spacing in runs page + fix drawer click away

This commit is contained in:
Ruben Fiszel
2022-11-08 11:22:40 +01:00
parent 5ba76986f3
commit 0cc1a84862
4 changed files with 6 additions and 6 deletions
@@ -48,7 +48,7 @@
</script>
<Drawer bind:this={drawer} on:open={listUsers} size="900px">
<DrawerContent overflow_y={false} title="Superadmin Settings" on:close={drawer.toggleDrawer}>
<DrawerContent overflow_y={false} title="Superadmin Settings" on:close={drawer.closeDrawer}>
<ConfirmationModal
open={openConfirmation}
title="Remove user"
@@ -39,7 +39,7 @@
function handleClickAway() {
dispatch('clickAway')
open = !open
open = false
}
function onKeyDown(event: KeyboardEvent) {
@@ -83,7 +83,7 @@
<CenteredPage>
{#if flow}
<div class="flex flex-row flex-wrap justify-between gap-4">
<div class="flex flex-row flex-wrap justify-between gap-4 mb-6">
<div class="w-full">
<div class="flex flex-col mt-6 mb-2 w-full">
<div class="flex flex-row flex-wrap w-full justify-between "
@@ -123,7 +123,7 @@
</div>
</div>
</div>
<div class="prose text-sm box max-w-6xl w-full mb-4">
<div class="prose text-sm box max-w-6xl w-full mt-8">
<SvelteMarkdown source={defaultIfEmptyString(flow.description, 'No description')} />
</div>
</div>
@@ -92,7 +92,7 @@
<CenteredPage>
{#if script}
<div class="flex flex-row flex-wrap justify-between gap-4">
<div class="flex flex-row flex-wrap justify-between gap-4 mb-6">
<div class="w-full">
<div class="flex flex-col mt-6 mb-2 w-full">
<div class="flex flex-row flex-wrap w-full justify-between "
@@ -143,7 +143,7 @@
</div>
</div>
</div>
<div class="prose text-sm box max-w-6xl w-full mb-4">
<div class="prose text-sm box max-w-6xl w-full mb-4 mt-8">
<SvelteMarkdown source={defaultIfEmptyString(script.description, 'No description')} />
</div>
</div>