Files
fnx_web/svelte/src/file_viewer/viewers/TextBlock.svelte

25 lines
383 B
Svelte
Raw Normal View History

<script>
export let width = "800px"
2022-02-08 21:05:08 +01:00
export let center = false
</script>
2022-02-08 21:05:08 +01:00
<div class="block" class:center style="max-width: {width};">
<slot></slot>
</div>
<style>
.block {
display: inline-block;
text-align: left;
padding-left: 8px;
vertical-align: middle;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 16px;
padding: 8px;
}
2022-02-08 21:05:08 +01:00
.center {
text-align: center;
}
</style>