From 8807aaf1b9bf379138cbd794dd0eeff31d5edb2e Mon Sep 17 00:00:00 2001 From: Steve Ruiz Date: Sat, 10 Jul 2021 17:29:46 +0100 Subject: [PATCH] Adds overflow-hidden to body. --- styles/stitches.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles/stitches.config.ts b/styles/stitches.config.ts index c88f3ca05..d4e33bf43 100644 --- a/styles/stitches.config.ts +++ b/styles/stitches.config.ts @@ -132,6 +132,9 @@ const globalStyles = global({ fontSize: '$2', backgroundColor: '$canvas', }, + body: { + overflow: 'hidden', + }, }) export default styled