add footer

This commit is contained in:
Inhji 2022-10-17 22:26:30 +02:00
parent 1c27b4b507
commit c0dd687f8b
1 changed files with 15 additions and 0 deletions

View File

@ -96,6 +96,9 @@
on:clearFilter={handleClearFilter}
on:toggleDarkMode={handleToggleDarkMode} />
<footer>
Made by <a href="https://inhji.de">Inhji</a> with svelte and vitejs. <a href="https://git.inhji.de/projects/notes-vitejs">Check the source</a>.
</footer>
</main>
<style>
@ -131,6 +134,7 @@
:global(body) {
padding: 0;
margin: 0;
color: var(--gray-800);
background: var(--gray-100);
transition: 0.1s ease-in all;
}
@ -141,10 +145,21 @@
margin: 0 auto;
}
footer {
color: var(--gray-400);
font-size: 90%;
text-align: center;
padding: 1rem;
}
.notes {
margin: 0.5rem 0;
}
a {
color: var(--gray-500);
}
h1 {
color: var(--gray-900);
font-weight: 300;