Can anyone assist with getting rid of the mysterious padding that appears between a border and its background? The design looks perfect in the preview, but when exported, there is unwanted padding inside the frame. Here's the snippet of code:
<div class="p-2" style="width:100%; max-width: 400px; border: 26px solid transparent;
border-image: url(https://i.imgur.com/RtR8M9i.png) 52 stretch;
border-image-slice: 35 fill;
image-rendering: pixelated;">
<div class="card border-0 rounded-0 py-10 px-10" style="background:#dbaa41; color:#3e2a14;">
<p dir="ltr">┏━───────────────╮</p>
<p dir="ltr">┃➥ Text goes here</p>
<p dir="ltr">┗━───────────────╯</p>
</div>
</div>
I've attempted adjusting padding in the border to 0, using class="no-margin", changing fill:, and background.color:, but nothing seems to resolve the issue. I will also provide a visual of how it appears in the preview and upon exporting: Preview Appearance Exported Version