41 lines
1001 B
Svelte
41 lines
1001 B
Svelte
|
<script>
|
||
|
export let nobranding = false;
|
||
|
</script>
|
||
|
|
||
|
<div class="page-wrapper full-page-panel">
|
||
|
<div class="flex-fill" />
|
||
|
|
||
|
<div class="wrapper wrapper-sm m-b-xl">
|
||
|
{#if !nobranding}
|
||
|
<div class="block txt-center m-b-lg">
|
||
|
<figure class="logo">
|
||
|
<img
|
||
|
src="{import.meta.env.BASE_URL}images/logo.svg"
|
||
|
alt="PocketBase logo"
|
||
|
width="40"
|
||
|
height="40"
|
||
|
/>
|
||
|
<span class="txt">Pocket<strong>Base</strong></span>
|
||
|
</figure>
|
||
|
</div>
|
||
|
<div class="clearfix" />
|
||
|
{/if}
|
||
|
|
||
|
<slot />
|
||
|
</div>
|
||
|
|
||
|
<div class="flex-fill" />
|
||
|
</div>
|
||
|
|
||
|
<style>
|
||
|
.full-page-panel {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
background: var(--baseColor);
|
||
|
}
|
||
|
.full-page-panel .wrapper {
|
||
|
animation: slideIn 200ms;
|
||
|
}
|
||
|
</style>
|