fix: playground full-viewport width (override container max-width)

This commit is contained in:
a2nr 2026-07-24 15:41:36 +07:00
parent 455d449d1e
commit f705f1f314
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
<Navbar /> <Navbar />
{/if} {/if}
<main class="container" style="flex: 1; padding-block: {isFullViewport ? '0' : '1.5rem'}; overflow: {isFullViewport ? 'hidden' : 'visible'};"> <main class="container" style="flex: 1; padding-block: {isFullViewport ? '0' : '1.5rem'}; overflow: {isFullViewport ? 'hidden' : 'visible'}; max-width: {isFullViewport ? '100%' : ''}; padding-inline: {isFullViewport ? '0' : ''}; width: {isFullViewport ? '100%' : ''};">
{@render children()} {@render children()}
</main> </main>