25 lines
391 B
Svelte
25 lines
391 B
Svelte
<script>
|
|
export let width = "800px"
|
|
export let center = false
|
|
</script>
|
|
|
|
<div class="block" class:center style="max-width: {width};">
|
|
<slot></slot>
|
|
</div>
|
|
|
|
<style>
|
|
.block {
|
|
display: inline-block;
|
|
text-align: initial;
|
|
padding-left: 8px;
|
|
vertical-align: middle;
|
|
|
|
background-color: var(--shaded_background);
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
}
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
</style>
|