This repository has been archived on 2024-08-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
chellaris-sign-up-site/src/routes/+layout.svelte

32 lines
404 B
Svelte
Raw Normal View History

<script>
import Header from './Header.svelte';
import './styles.css';
</script>
<div class="app">
<Header />
<main>
<slot />
</main>
</div>
<style>
.app {
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex: 1;
display: flex;
flex-direction: column;
2023-08-08 19:44:10 +02:00
padding: 0rem;
width: 100%;
2023-08-08 19:44:10 +02:00
max-height: 95vh;
margin: 0 auto;
box-sizing: border-box;
}
</style>