ios appearance and theme override

This commit is contained in:
2021-05-05 10:42:37 +02:00
parent 0d79e9c85e
commit 1bb5d3ecb0
6 changed files with 136 additions and 35 deletions

View File

@@ -1,4 +1,5 @@
<script lang="ts">
import Footer from '$lib/views/Footer.svelte'
import Header from '$lib/views/Header.svelte'
import '../app.css'
@@ -13,16 +14,9 @@
<slot />
</main>
<footer>
<a href="/">/home</a>
<a href="/about">/about</a>
<a href="https://github.com/cupcakearmy/cryptgeon" target="_blank" rel="noopener">/code</a>
</footer>
<Footer />
<style>
a {
margin: 0 0.5rem;
}
main {
padding: 1rem;
padding-bottom: 4rem;
@@ -30,17 +24,4 @@
max-width: 35rem;
margin: 0 auto;
}
footer {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: center;
padding: 1rem;
position: fixed;
bottom: 0;
right: 0;
width: 100%;
background-color: var(--ui-bg-0-85);
}
</style>