footer tweaks

This commit is contained in:
Jill 2022-03-04 16:05:03 +03:00
parent 2af332d670
commit 049e19b59d
2 changed files with 21 additions and 15 deletions

View File

@ -13,7 +13,7 @@ html { font-family: 'Inter', sans-serif; }
body {
color: #333;
margin: 0;
padding: 8px;
padding: 0px;
box-sizing: border-box;
}

View File

@ -29,24 +29,30 @@
}
main {
position: relative;
min-height: 100%;
position: absolute;
width: 100%;
}
content {
margin-bottom: 1.2em;
}
</style>
<main>
<header>
<H1>chartmaker</H1>
</header>
{#if $currentChartID}
<ChartEdit/>
{:else}
<ChartCreation/>
{/if}
<footer>
made with <div class="icon"><IoMdHeart/></div> by oatmealine. <a target="_blank" href="https://git.oat.zone/oat/project-databased-fe">source</a>
</footer>
<content>
<header>
<H1>chartmaker</H1>
</header>
{#if $currentChartID}
<ChartEdit/>
{:else}
<ChartCreation/>
{/if}
<footer>
made with <div class="icon"><IoMdHeart/></div> by oatmealine. <a target="_blank" href="https://git.oat.zone/oat/project-databased-fe">source</a>
</footer>
</content>
</main>