From c70409f5c7517f6fbb5db98168801d41e44dee17 Mon Sep 17 00:00:00 2001 From: Logan Davidson Date: Mon, 8 Jul 2024 20:24:41 +0100 Subject: [PATCH] Fix content shift MUI tooltip issue 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;