enh: table view allow overflow

This commit is contained in:
Timothy J. Baek 2024-09-14 23:23:52 +01:00
parent fa8d7bd9c6
commit 902f30c123

View File

@ -34,7 +34,8 @@
code={revertSanitizedResponseContent(token?.text ?? '')} code={revertSanitizedResponseContent(token?.text ?? '')}
/> />
{:else if token.type === 'table'} {:else if token.type === 'table'}
<table> <div class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full">
<table class="w-full">
<thead> <thead>
<tr> <tr>
{#each token.header as header, headerIdx} {#each token.header as header, headerIdx}
@ -62,6 +63,7 @@
{/each} {/each}
</tbody> </tbody>
</table> </table>
</div>
{:else if token.type === 'blockquote'} {:else if token.type === 'blockquote'}
<blockquote> <blockquote>
<svelte:self id={`${id}-${tokenIdx}`} tokens={token.tokens} /> <svelte:self id={`${id}-${tokenIdx}`} tokens={token.tokens} />