fix and complete auth ui

This commit is contained in:
Shahrad Elahi
2023-11-04 08:39:13 +03:30
parent ece632f7bb
commit cfaa98fea9
11 changed files with 191 additions and 45 deletions

View File

@@ -0,0 +1,5 @@
<script lang="ts">
export let className: string | undefined;
</script>
<span class:className> · </span>

View File

@@ -0,0 +1,21 @@
<script>
import DotDivider from '$lib/components/DotDivider.svelte';
</script>
<footer class={'flex items-center justify-center'}>
<a
href={'https://github.com/shahradelahi'}
title={'Find me on Github'}
class={'px-2 font-medium text-gray-400/80 hover:text-gray-500 text-xs'}
>
Made by <span class={'font-medium'}> Shahrad Elahi </span>
</a>
<DotDivider className="font-bold text-gray-400" />
<a
href={'https://github.com/shahradelahi/wireadmin'}
title={'Github'}
class={'px-2 font-medium text-gray-400/80 hover:text-gray-500 text-xs'}
>
Github
</a>
</footer>