fix(website): overflow on code blocks

This commit is contained in:
LukaDev 2024-08-30 13:51:46 +02:00
parent bf3c2339fe
commit c7c4c16727

View file

@ -2,7 +2,7 @@
const { data } = $props() const { data } = $props()
</script> </script>
<div class="prose max-w-none py-8"> <div class="prose min-w-0 py-8 prose-pre:w-full prose-pre:overflow-auto">
<!-- eslint-disable-next-line svelte/no-at-html-tags --> <!-- eslint-disable-next-line svelte/no-at-html-tags -->
{@html data.readmeHtml} {@html data.readmeHtml}
</div> </div>