nicco.io/src/lib/components/SimplePage.svelte

25 lines
366 B
Svelte
Raw Normal View History

2021-08-02 09:53:08 +02:00
<script lang="ts">
2020-07-24 11:10:01 +02:00
import PageTitle from './PageTitle.svelte'
export let title = ''
2020-09-23 15:37:12 +02:00
export let expanded = true
export let readable = false
2020-07-24 11:10:01 +02:00
</script>
2021-08-02 09:53:08 +02:00
<PageTitle {title} {readable} />
<section class:expanded>
<slot />
</section>
2020-07-24 11:10:01 +02:00
<style>
section {
max-width: 30em;
2020-09-23 15:37:12 +02:00
margin-bottom: 4em;
}
section.expanded {
margin-top: 5em;
2020-07-24 11:10:01 +02:00
}
</style>