1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-17 21:44:05 +00:00

Create databases and collections

This commit is contained in:
2023-01-15 16:49:08 +01:00
parent de02a6fd8f
commit c9a035ed59
4 changed files with 91 additions and 19 deletions

View File

@ -18,19 +18,19 @@
{#if show}
<div class="modal outer" on:mousedown|self={() => show = false} transition:fade>
<div class="inner" transition:fly={{ y: 100 }}>
<header>
{#if title}
{#if title}
<header>
<div class="title">{title}</div>
{/if}
<button class="btn close" on:click={() => show = false} title="close">
<Icon name="x" />
</button>
</header>
<button class="btn close" on:click={() => show = false} title="close">
<Icon name="x" />
</button>
</header>
{/if}
<div class="slot content" class:padded={contentPadding}> <slot /> </div>
{#if $$slots.footerLeft || $$slots.footerRight}
<footer>
<slot name="footer" />
</footer>
{#if $$slots.footer}
<footer> <slot name="footer" /> </footer>
{/if}
</div>
</div>