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

23 lines
297 B
Svelte
Raw Normal View History

<script>
import Header from './Header.svelte';
import './styles.css';
</script>
<div class="app">
<Header />
2023-08-12 19:58:51 +02:00
<slot />
</div>
<style>
.app {
2023-08-30 04:17:16 +02:00
display: grid;
grid-template-areas:
'header'
'app';
grid-template-rows: 3rem 1fr;
min-height: 100vh;
2023-08-30 04:17:16 +02:00
max-height: 100vh;
}
</style>