budibase/packages/bbui/src/Layout/Page.svelte

27 lines
478 B
Svelte
Raw Normal View History

2021-05-06 11:17:27 +02:00
<script>
export let wide = false
2022-03-07 14:14:36 +01:00
export let maxWidth = "80ch"
2021-05-06 11:17:27 +02:00
</script>
2022-03-07 14:14:36 +01:00
<div style="--max-width: {maxWidth}" class:wide>
2021-05-06 11:17:27 +02:00
<slot />
</div>
<style>
div {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
2022-03-07 14:14:36 +01:00
max-width: var(--max-width);
2021-05-06 11:17:27 +02:00
margin: 0 auto;
padding: calc(var(--spacing-xl) * 2);
min-height: calc(100% - var(--spacing-xl) * 4);
2021-05-06 11:17:27 +02:00
}
.wide {
max-width: none;
margin: 0;
}
</style>