Files
fnx_web/svelte/src/file_viewer/CustomBanner.svelte
2022-04-14 18:55:30 +02:00

28 lines
399 B
Svelte

<script>
export let src = ""
export let border_top = false;
</script>
{#if src}
<div class:border_top>
<img class="image" src="{src}" alt="User-provided banner"/>
</div>
{/if}
<style>
.border_top {
border-top: solid 1px var(--separator);
}
.image {
display: block;
margin: auto;
max-height: 90px;
max-width: 100%;
}
@media(max-height: 600px) {
.image {
max-height: 60px;
}
}
</style>