Update feature table with new transfer limits

This commit is contained in:
2022-02-28 16:35:51 +01:00
parent 0c25e3e474
commit 7adc2f6d16
6 changed files with 52 additions and 24 deletions

View File

@@ -87,9 +87,9 @@ const code = async file => {
<div bind:this={container} class="container">
{#if text_type === "markdown"}
<div bind:this={md_container}>
<section bind:this={md_container} class="md">
Loading...
</div>
</section>
{:else if text_type === "text"}
<pre bind:this={text_pre}>
Loading...
@@ -110,13 +110,19 @@ const code = async file => {
width: 100%;
font-size: 0.9em;
line-height: 1.5em;
padding: 5px 5px 5px 20px;
overflow-y: auto;
overflow-x: hidden;
}
.container > pre {
margin: 0;
padding: 10px;
white-space: pre-wrap;
overflow: hidden;
border: none;
}
.container > .md {
display: block;
padding: 10px;
margin: auto;
}
</style>