From 63a13771b5315b9bc40212b30aadf80fbb75d59b Mon Sep 17 00:00:00 2001 From: Logan Davidson Date: Mon, 8 Jul 2024 20:34:51 +0100 Subject: [PATCH] Fix content shift MUI tooltip issue (#494) Fix an issue where a scrollbar would momentarily appear and shift all page content to the left if a MUI tooltip was scrolled off screen. --- frontend/styles/master.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/styles/master.css b/frontend/styles/master.css index df2f5f5e..28531f4d 100644 --- a/frontend/styles/master.css +++ b/frontend/styles/master.css @@ -21,6 +21,12 @@ body.dark { background-color: var(--neutral-800); } +@media (min-width: 1280px) { + body { + overflow-y: hidden; + } +} + #__next { display: flex; flex-flow: column;