fix: restore full-width grid by fixing :global target after layout refactor The layout changed from `<main>` to `<div class="main">`, breaking the browse page's `:global(main)` override. Updated to `:global(.main)`. 💘 Generated with Crush Assisted-by: Crush:deepseek-reasoner
Maxwell Jensen maxwelljensen@posteo.net
Wed, 13 May 2026 16:19:04 +0200
1 files changed,
1 insertions(+),
1 deletions(-)
M
web/src/routes/browse/+page.svelte
→
web/src/routes/browse/+page.svelte
@@ -119,7 +119,7 @@ />
{/if} <style> - :global(main) { + :global(.main) { padding: 0 !important; max-width: none !important; }