boredgame/src/routes/__layout.svelte

48 lines
792 B
Svelte
Raw Normal View History

2022-01-28 05:27:12 +00:00
<script lang="ts">
import Header from '$lib/header/Header.svelte';
import '$root/styles/global.css';
import 'carbon-components-svelte/css/all.css';
import '../app.css';
2022-01-28 05:27:12 +00:00
</script>
<Header />
<main>
<slot />
2022-01-28 05:27:12 +00:00
</main>
<footer>
<p>Built by <a target="__blank" href="https://bradleyshellnut.com">Bradley Shellnut</a></p>
2022-01-28 05:27:12 +00:00
</footer>
<style>
main {
flex: 1;
display: flex;
flex-direction: column;
padding: 1rem;
width: 100%;
max-width: 1024px;
margin: 0 auto;
box-sizing: border-box;
}
2022-01-28 05:27:12 +00:00
footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px;
}
2022-01-28 05:27:12 +00:00
footer a {
font-weight: bold;
}
2022-01-28 05:27:12 +00:00
@media (min-width: 480px) {
footer {
padding: 40px 0;
}
}
2022-01-28 05:27:12 +00:00
</style>