From a511c1d2c62cd162d0f337dc3d0cbeb3a474267d Mon Sep 17 00:00:00 2001 From: Harsh Mahajan <127186841+HarshMN2345@users.noreply.github.com> Date: Thu, 25 Sep 2025 16:08:14 +0530 Subject: [PATCH] Fix: remove phantom right-edge spacing when no vertical scrollbar is present. --- src/routes/+layout.svelte | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 7a536b25e..2a2c61b79 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -289,6 +289,12 @@ } } + /* Fix when no vertical scrollbar is present, some environments reserve a gutter by default */ + html, + body { + scrollbar-gutter: auto !important; + } + /* TODO: remove this block once Pink V2 is incorporated */ input[type='radio'], input[type='checkbox']:not([class='switch']),