Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/components/Preview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@
</Button>
</div>
<Tabs.Content value="preview">
<iframe class="h-full w-full rounded-lg pb-8" title="Preview" srcdoc={code}></iframe>
<iframe class="h-full w-full rounded-lg pb-4" title="Preview" srcdoc={code}></iframe>
</Tabs.Content>
<Tabs.Content value="code">
<Highlight language={xml} {code} let:highlighted>
<LineNumbers
{highlighted}
wrapLines
hideBorder
class="h-full max-h-[90vh] w-full overflow-auto rounded-lg"
class="h-full max-h-[90vh] w-full overflow-auto rounded-lg pb-8"
/>
</Highlight>
</Tabs.Content>
Expand Down