2022-02-08 11:32:36 +01:00
|
|
|
<script>
|
|
|
|
export let width = "800px"
|
2022-02-08 21:05:08 +01:00
|
|
|
export let center = false
|
2022-02-08 11:32:36 +01:00
|
|
|
</script>
|
|
|
|
|
2022-02-08 21:05:08 +01:00
|
|
|
<div class="block" class:center style="max-width: {width};">
|
2022-02-08 11:32:36 +01:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.block {
|
|
|
|
display: inline-block;
|
2022-02-28 21:52:12 +01:00
|
|
|
text-align: initial;
|
2022-02-08 11:32:36 +01:00
|
|
|
padding-left: 8px;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
2022-02-21 21:53:58 +01:00
|
|
|
color: var(--layer_1_text_color);
|
2022-02-08 11:32:36 +01:00
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
2022-02-08 23:55:47 +01:00
|
|
|
border-radius: 8px;
|
2022-02-08 11:32:36 +01:00
|
|
|
padding: 8px;
|
|
|
|
}
|
2022-02-08 21:05:08 +01:00
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-02-08 11:32:36 +01:00
|
|
|
</style>
|