From c562f459042bb7a0fd1d5272134b2d7885ffdcef Mon Sep 17 00:00:00 2001 From: Pradip Chaudhary <88336529+ChaudharyPradip@users.noreply.github.com> Date: Mon, 18 Sep 2023 13:19:01 +0530 Subject: [PATCH] fix: "scrollbar-gutter: stable" on html to prevent layout shift (#11413) --- apps/web/styles/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/web/styles/globals.css b/apps/web/styles/globals.css index f00e4bfe3d..d482254aed 100644 --- a/apps/web/styles/globals.css +++ b/apps/web/styles/globals.css @@ -109,6 +109,10 @@ background: var(--cal-brand); } +html { + scrollbar-gutter: stable; +} + body  { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;